Currently, there seems to be no way to configure a custom python version installed by something like pyenv.
Using pyenv, you can install multiple python versions side-by-side without overwriting the system python, yet maintain application specific python versions.
The linked PR will solve this by utilizing a variable in python::pyvenv called python_path. If set, it will override the python version used to create that specific virtual environment.
Currently, there seems to be no way to configure a custom python version installed by something like pyenv. Using pyenv, you can install multiple python versions side-by-side without overwriting the system python, yet maintain application specific python versions.
The linked PR will solve this by utilizing a variable in
python::pyvenv
calledpython_path
. If set, it will override the python version used to create that specific virtual environment.