summaryrefslogtreecommitdiff
path: root/src/virtualenv/util/path/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop Python 2 support (#2548)Bernát Gábor2023-04-191-0/+2
|
* Drop support of running under Python 2.7 (#2382)Bernát Gábor2022-07-251-6/+2
|
* Bump pip to 20.3.3 and wheel to 0.36.2 (#2036)Bernát Gábor2021-01-121-0/+2
|
* handle application data folder is read only (#1661)Seungmin Ryu2020-02-261-2/+4
| | | | | | | | | | | | | | | | | | | | * 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>
* Make aliases relative symlinks (#1610)Anthony Sottile2020-02-131-2/+1
|
* avoid copying the stats with copytree (#1571)Bernát Gábor2020-02-111-2/+10
| | | | | | | | | | | | * avoid copying the stats with copytree This information is not needed, so it's redundant work; similarly it might not be allowed (e.g. on macOS framework python). Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix
* support for c-extension builds within virtualenv (#1503)Bernát Gábor2020-01-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * test include folders - add test to check if it works Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * pypy add lib on Linux Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows * fix Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * debug macos Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * try fix pypy windows Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix Windows * fix * fix Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * Windows PyPy just does not understand non-ascii PATHS :-( * allow pypy3 to fail Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* add zipapp support with bundled dependencies (#1491)Bernát Gábor2020-01-161-7/+2
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* interface compatibility with before rewrite (#1479)Bernát Gábor2020-01-101-0/+12
Ensure that what ran with virtualenv 17 will continue running in a post rewrite world minus the deprecated flags, plus the relocatable feature. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>