You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ivukotic Would you be open to adding a more modern version of CPython than 3.8, such as Python 3.10, as NEP 29 advocates support for Python 3.8 be dropped for the PyData stack in 2023 and deadsnakes is already being used?
allows for Python 3.6 and Python 3.10 to have virtual environment control, and as Python 3.8 is getting brought along vestigially it is ignored (not sure if that can be avoided when getting the other packages — I think no).
This results in a working Python 3.6 and Python 3.10 with pip and venv control:
The undesirable thing here of course is that Python 3.8 is still the system default
$ $(command -v python3) --versionPython 3.8.10
but in a (admittedly not good hack) you could somewhat get around that with an alias to python3.10 (or hopefully something more robust and intelligent then what I can think of at the moment).
The text was updated successfully, but these errors were encountered:
@ivukotic Would you be open to adding a more modern version of CPython than 3.8, such as Python 3.10, as NEP 29 advocates support for Python 3.8 be dropped for the PyData stack in 2023 and
deadsnakes
is already being used?The following Dockerfile
when built
allows for Python 3.6 and Python 3.10 to have virtual environment control, and as Python 3.8 is getting brought along vestigially it is ignored (not sure if that can be avoided when getting the other packages — I think no).
This results in a working Python 3.6 and Python 3.10 with
pip
andvenv
control:The undesirable thing here of course is that Python 3.8 is still the system default
but in a (admittedly not good hack) you could somewhat get around that with an alias to
python3.10
(or hopefully something more robust and intelligent then what I can think of at the moment).The text was updated successfully, but these errors were encountered: