Message408311
Tox isn't needed, just venv from the stdlib:
$ python3.11.0a2 -m venv venv_a2
$ venv_a2/bin/python -c "import sys,os.path; print(e := sys._base_executable); print(os.path.exists(e))"
/private/tmp/venv_a2/bin/python
True
$ python3.11.0a3 -m venv venv_a3
$ venv_a3/bin/python -c "import sys,os.path; print(e := sys._base_executable); print(os.path.exists(e))"
/usr/local/bin/python
False |
|
Date |
User |
Action |
Args |
2021-12-11 15:45:36 | nedbat | set | recipients:
+ nedbat, christian.heimes, steve.dower, pablogsal |
2021-12-11 15:45:36 | nedbat | set | messageid: <1639237536.45.0.58385990214.issue46028@roundup.psfhosted.org> |
2021-12-11 15:45:36 | nedbat | link | issue46028 messages |
2021-12-11 15:45:36 | nedbat | create | |
|