summaryrefslogtreecommitdiff
path: root/src/virtualenv/util/lock.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop Python 2 support (#2548)Bernát Gábor2023-04-191-0/+2
|
* Make `ReentrantFileLock` thread-safe and, thereby, fix race condition in ↵Randy Döring2023-03-121-4/+7
| | | | `virtualenv.cli_run` (#2517)
* Move to hatchling, drop 3.6 support (#2474)Bernát Gábor2022-12-291-3/+3
|
* Bump dependencies and build tools (#2394)Bernát Gábor2022-08-041-7/+7
| | | Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
* Drop support of running under Python 2.7 (#2382)Bernát Gábor2022-07-251-15/+11
|
* Avoid a new deprecation warning from filelock dependency (#2237)Ofek Lev2021-12-261-2/+2
| | | Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* refactor to not do too much in ReentrantFileLock.__del__ (#2213)Matti Picus2021-10-231-2/+5
|
* Add --readonly-app-data option (#2009)Anthony Sottile2020-11-211-4/+52
|
* clean up a few small things (#2002)Anthony Sottile2020-11-011-2/+2
|
* Fix parallel app-data base image creation (#1870)Bernát Gábor2020-06-231-0/+6
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Implement periodic update feature (#1841)Bernát Gábor2020-06-211-3/+11
| | | Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
* PyPy CI timeouts (#1720)Bernát Gábor2020-03-131-12/+14
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* do not fail if lock not present (#1696)Bernát Gábor2020-03-061-1/+1
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Fix failing to acquire lock in case of parallel runs (#1524)Bernát Gábor2020-01-291-3/+10
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* add a write through filesystem cache with locks for py informat… (#1505)20.0.0b1Bernát Gábor2020-01-281-0/+97
* 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>