summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* release 20.0.1020.0.10release-20.0.10Bernat Gabor2020-03-106-7/+17
|
* Improve installation documentation (#1707)Bernát Gábor2020-03-104-1/+40
| | | | | | | Resolves #1618. Resolves #1619. Resolves #1620. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Fix py info might be misslead by distutils config (#1705)Bernát Gábor2020-03-106-14/+45
| | | | | | | Ignore configuration file parsing when getting distutils data. Resolves #1663. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* A more robust way to get scripts path (#1706)Bernát Gábor2020-03-101-2/+1
| | | | | Resolves #1683. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* upgrade setuptools to 46.0.0 from 45.3.0 for Python3.5+ (#1702)Bernát Gábor2020-03-096-8/+7
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Merge pull request #1701 from pypa/release-20.0.9Bernát Gábor2020-03-085-5/+12
|\ | | | | release 20.0.9
| * release 20.0.920.0.9Bernat Gabor2020-03-085-5/+12
|/
* fix changelogBernat Gabor2020-03-081-1/+1
| | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* add timeout for tests (#1700)Bernát Gábor2020-03-087-1/+7
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* pythonw works as python on Windows (#1693)Bernát Gábor2020-03-086-5/+17
| | | | | | | * pythonw works as python on Windows Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * foix
* Bump embeded setuptools (#1699)Bernát Gábor2020-03-073-5/+6
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Better handling of loader patch on python 3 (#1698)Bernát Gábor2020-03-061-17/+19
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Handle legacy loaders for pip patch (#1691)Bernát Gábor2020-03-062-5/+18
|
* Support for Python 2 platform that store landmark in platstdlib (#1697)Bernát Gábor2020-03-065-9/+25
| | | | Resolves #1694. 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>
* Merge pull request #1689 from pypa/release-20.0.8Bernát Gábor2020-03-048-11/+18
|\ | | | | release 20.0.8
| * release 20.0.820.0.8Bernat Gabor2020-03-048-11/+18
|/
* use import hooks to patch distutils/setuptools (#1688)Bernát Gábor2020-03-0410-98/+119
|
* Fix setting PYTHONPATH on Python 2 not working (#1673)Julien Danjou2020-03-035-38/+116
| | | | | | | | | - ensure we do not rewrite the ``PYTHONPATH`` - ensure we respect the ``-E`` flag Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* docs: fix some typos (#1687)Xavier Fernandez2020-03-032-3/+3
|
* Default prompt of environment name in batch shell (#1679)spetafree2020-03-033-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Default prompt of environment name in batch shell * Handle batch prompt in activate.bat * change test folder name to aviod bat escapes * run activation tests with and without prompt * test for correct prompt in batch (only, for now) * Try to normalize path in batch tests * update description * Update 1679.bugfix.rst * Update conftest.py * Update conftest.py Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * better names Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* Fix list configuration value parsing (#1676)Bernát Gábor2020-02-274-46/+74
| | | | | Resolves #1674. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* fix typographic error (#1672)Theodor Dimitriou2020-02-261-1/+1
| | | remove not-making-sense word from that sentence.
* release 20.0.720.0.7Bernat Gabor2020-02-262-2/+9
| | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Disable distutils fixup for python 3Bernat Gabor2020-02-264-5/+7
| | | | | | Until https://github.com/pypa/pip/issues/7778 is fixed and released. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Merge pull request #1666 from pypa/release-20.0.6Bernát Gábor2020-02-268-16/+24
|\ | | | | fix relative zipapp paths on UNIX - release 20.0.6
| * fix relative zipapp paths on UNIX20.0.6release-20.0.6Bernat Gabor2020-02-262-2/+3
| | | | | | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
| * release 20.0.6Bernat Gabor2020-02-267-15/+22
|/
* support entry point paths with space (#1660)Nicola Soranzo2020-02-264-10/+13
| | | | | | fix creation of entry points when path contains spaces Co-authored-by: Bernát Gábor <gaborjbernat@gmail.com>
* handle application data folder is read only (#1661)Seungmin Ryu2020-02-2641-300/+436
| | | | | | | | | | | | | | | | | | | | * 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>
* Minor fix to installation.rst (#1665)shaido9872020-02-261-1/+1
| | | Fixed the position of the --user flag for the suggested pip install command.
* Update CONTRIBUTING.mdBernát Gábor2020-02-251-1/+1
|
* Accept python self-referencing python executables (#1664)Bernát Gábor2020-02-253-1/+8
| | | | | | | | Accept these as if they were system executables, print a info about them referencing themselves. Resolves #1632. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Update issue templatesBernát Gábor2020-02-252-1/+35
|
* update issue template, add contributing (#1662)Bernát Gábor2020-02-256-16/+68
| | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Ensure distutils configuration values do not escape virtual environment (#1657)Bernát Gábor2020-02-2411-4/+156
| | | | | | | | | | | | | | * Ensure distutils configuration values do not escape virtual environment Distutils has some configuration files where the user may alter paths to point outside of the virtual environment. Defend against this by installing a pth file that resets this to their expected path. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * fix CI failure due to #pypa/pip/issues/7778 Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* fix pypy2 builtins are imported as stdlib modules (#1656)Bernát Gábor2020-02-235-20/+49
| | | | | | | | | | | | * fix pypy2 builtins are imported as stdlib modules Resolves #1652. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net> * test failure Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Fix generated scripts use host version info rather than target (#1655)Bernát Gábor2020-02-224-7/+33
| | | | | Resolves #1600. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Fix global site package always being added with bundled macOs python ↵Bernát Gábor2020-02-224-1/+31
| | | | | framework builds (#1653) Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Merge pull request #1650 from pypa/release-20.0.5Bernát Gábor2020-02-219-10/+20
|\ | | | | release 20.0.5
| * release 20.0.520.0.5Bernat Gabor2020-02-219-10/+20
|/ | | | Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* Prevent sys.prefix from leaking into child process on macOS (#1648)Claudio Jolowicz2020-02-212-1/+12
|
* macOs Python 2 Framework support (#1641)Bernát Gábor2020-02-2115-67/+384
|
* Update user_guide.rst (#1644)Matthew StClair2020-02-181-1/+1
|
* Discover python interpreter in a case insensitive manner (#1629)PRAJWAL M2020-02-155-4/+14
| | | Closes https://github.com/pypa/virtualenv/issues/1624
* tox: call coverage as module (#1636)Sorin Sbarnea2020-02-151-8/+8
| | | | Avoids runtime warning and potential issues of using externally installed coverage. Warning was observed on Azure.
* Also add executables for pythonX.X under pypy (#1615)Anthony Sottile2020-02-144-3/+8
| | | | | | | | * Also add executables for pythonX.X under pypy * Fix losing libpypy-c.so when pypy executable is a symlink * Skip trying pythonX.X on pypy3.6 7.3.0
* Better error message when build dependencies not satisfied (#1628)Bernát Gábor2020-02-144-11/+11
| | | | | | | This only manifests on old platforms, but as we still support them makes sense to provide better error messages, and relax a bit our build requirements. Signed-off-by: Bernat Gabor <bgabor8@bloomberg.net>
* user_guide.rst: Fix typo by changing PEP 404 to PEP 405 (#1627)PRAJWAL M2020-02-141-1/+1
|
* Merge pull request #1625 from pypa/release-20.0.4Bernát Gábor2020-02-144-3/+13
|\ | | | | release 20.0.4