Hello,
I noticed that on my machine, which I have just upgraded to 14.2, all python packages seem to be stuck at py39. Yet python 3.11 is installed (as well as python 3.9).
I tried to use "pkg set" to solve this, but without success:
It doesn't update anything... and packages are still at their py39 version.
What am I doing wrong?
I noticed that on my machine, which I have just upgraded to 14.2, all python packages seem to be stuck at py39. Yet python 3.11 is installed (as well as python 3.9).
I tried to use "pkg set" to solve this, but without success:
Bash:
for i in $(pkg query -g %n 'py39-*'); do pkg set -yn ${i}:py311-${i#py39-}; done
pkg upgrade
What am I doing wrong?