summaryrefslogtreecommitdiff
path: root/src/virtualenv/run
Commit message (Collapse)AuthorAgeFilesLines
* Drop Python 2 support (#2548)Bernát Gábor2023-04-197-0/+14
|
* Bump dependencies and build tools (#2394)Bernát Gábor2022-08-043-4/+4
| | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Drop support of running under Python 2.7 (#2382)Bernát Gábor2022-07-257-50/+60
|
* Use 'selectable' interface for entry points only when available (#2246)Miro Hrončok2021-12-271-2/+13
|
* special-case `--prompt .` to the cwd (#2220)Ruairidh MacLeod2021-10-231-1/+4
| | | Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* Rely on 'selectable' interface for entry points. (#2126)Jason R. Coombs2021-07-091-6/+2
| | | Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* [pre-commit.ci] pre-commit autoupdate (#2098)pre-commit-ci[bot]2021-04-271-1/+1
| | | | | | | | | | | | | * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/asottile/pyupgrade: v2.12.0 → v2.13.0](https://github.com/asottile/pyupgrade/compare/v2.12.0...v2.13.0) - [github.com/psf/black: 20.8b1 → 21.4b0](https://github.com/psf/black/compare/20.8b1...21.4b0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Built in discovery class is always preferred over plugin supplied classes ↵Ashley Whetter2021-04-201-2/+5
| | | | (#2088)
* API: Allow passing on the environment variable as an argument (#2054)Bernát Gábor2021-01-181-9/+14
| | | | | Defaults to os.environ. Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
* Add --readonly-app-data option (#2009)Anthony Sottile2020-11-211-11/+11
|
* Align Windows 3.7 methodology and later with venv (#1976)Bernát Gábor2020-10-121-8/+5
| | | Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
* Upgrade setuptools and pip (#1939)Bernát Gábor2020-09-105-5/+15
|
* Allow bypassing the logging setup via the Python API (#1904)Bernát Gábor2020-07-241-16/+32
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Fix typos in the documentation (#1902)Krzysztof Szafranek2020-07-221-1/+1
|
* Implement periodic update feature (#1841)Bernát Gábor2020-06-214-109/+140
| | | Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
* Rename clear-app-data to reset-app-data to avoid cli parser abbreviation bug ↵Bernát Gábor2020-05-132-3/+3
| | | | (#1826)
* Bump linters (#1823)Bernát Gábor2020-05-123-5/+5
|
* Better handling of conflicting --copies and --symlinks (#1785)Bernát Gábor2020-04-252-17/+13
|
* amazonlinux support (#1728)Bernát Gábor2020-03-181-1/+1
| | | | | | | | | * 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-9/+20
| | | | | | * Fix Windows Store support Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* handle application data folder is read only (#1661)Seungmin Ryu2020-02-266-9/+120
| | | | | | | | | | | | | | | | | | | | * fixed FileNotFoundError when directory isn't writable (#1640) - when using docker, if `user_data_dir()` isn't writable directory, `default_data_dir()` use `system temp directory` + `virtualenv`. for example, tempdir is `/tmp`, it use `/tmp/virtualenv` * start making the app-data more explicit and robust Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows * fix docs Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* expose and document programmatic API (#1592)Bernát Gábor2020-02-121-3/+4
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* fix python discovery with non resolved prefix paths (#1590)Bernát Gábor2020-02-121-8/+0
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* print a message after creating an environment (#1569)Pradyun Gedam2020-02-111-0/+8
| | | | | | | | | | * Print a message after creating an environment * fix code, add changelog Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* add option to view failure stacktraces (#1572)Bernát Gábor2020-02-111-7/+14
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* rewrite the documentation (#1519)Bernát Gábor2020-02-046-27/+51
|
* add a write through filesystem cache with locks for py informat… (#1505)20.0.0b1Bernát Gábor2020-01-281-1/+1
| | | | | | | | | | | | | | | | | | | | * add a write through filesystem cache with locks for py information queries via sys executables this speeds up significantly the creation process, as calling subprocesess is at least an order of mangitued slower than reading the information from a json dump We also now default to the built-in mechanism Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * make file lock reentrant and thread safe Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* separate describe/create - check upfront if can create (#1502)Bernát Gábor2020-01-214-29/+50
| | | | | | | | | | | | | | | | * 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
* cleanup env-vars and use venv as default dest dir instead of envBernat Gabor2020-01-101-1/+1
| | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* reorganize run.py - prefer inheritence based API over generatorsBernat Gabor2020-01-107-0/+272
Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>