summaryrefslogtreecommitdiff
path: root/src/virtualenv/discovery/py_spec.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop Python 2 support (#2548)Bernát Gábor2023-04-191-0/+2
|
* Py marker means any python not CPython (#2460)Bernát Gábor2022-12-051-1/+1
| | | Resolves https://github.com/tox-dev/tox/issues/2566
* Drop support of running under Python 2.7 (#2382)Bernát Gábor2022-07-251-18/+11
|
* amazonlinux support (#1728)Bernát Gábor2020-03-181-2/+0
| | | | | | | | | * Allow testing docker images Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * amazonlinux support Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Fix Windows Store support (#1725)Bernát Gábor2020-03-171-1/+3
| | | | | | * Fix Windows Store support Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Discover python interpreter in a case insensitive manner (#1629)PRAJWAL M2020-02-151-1/+1
| | | Closes https://github.com/pypa/virtualenv/issues/1624
* Lower min version of six to 1.9 (#1606)Sorin Sbarnea2020-02-131-3/+2
| | | | | This change should allow installation of virtualenv on systems with older six where their LTS support may prevent them from upgrading it.
* Better handling of base executable not found #1515Bernát Gábor2020-01-301-8/+8
| | | | | | | Improve the base executable discovery mechanism: - print at debug level why we refuse some candidates, - when no candidates match exactly, instead of hard failing fallback to the closest match where the priority of matching attributes is python implementation, major version, minor version, architecture, patch version, release level and serial (this is to facilitate things to still work when the OS upgrade replace/upgrades the system python with a newer version than what the virtualenv host python was created with), - always resolve system_executable information during the interpreter discovery, and the discovered environment is the system interpreter instead of the venv/virtualenv (this happened before lazily the first time we accessed and caused reporting that the created virtual environment is of type of the virtualenv host python version, instead of the system pythons version - these two can differ if the OS upgraded the system python underneath and the virtualenv host was created via copy),
* Support relative paths for the python specification string. (#1523)Bernát Gábor2020-01-291-1/+1
| | | | | | | The python info discovery mechanism does not work with relative paths, normalize python specification strings to always be absolute paths. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Make single verbosity output cleaner (#1511)Bernát Gábor2020-01-281-1/+1
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* separate describe/create - check upfront if can create (#1502)Bernát Gábor2020-01-211-0/+123
* start Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * test for Windows Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * test for Windows Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows symlink cache