Release History¶
v20.0.7 (2020-02-26)¶
Bugfixes - 20.0.7¶
Disable distutils fixup for python 3 until pypa/pip #7778 is fixed and released - by @gaborbernat. (#1669)
v20.0.6 (2020-02-26)¶
Bugfixes - 20.0.6¶
Fix global site package always being added with bundled macOs python framework builds - by @gaborbernat. (#1561)
Fix generated scripts use host version info rather than target - by @gaborbernat. (#1600)
Fix circular prefix reference with single elements (accept these as if they were system executables, print a info about them referencing themselves) - by @gaborbernat. (#1632)
Handle the case when the application data folder is read-only:
the application data folder is now controllable via
app-data
,clear-app-data
now cleans the entire application data folder, not just theapp-data
seeder path,check if the application data path passed in does not exist or is read-only, and fallback to a temporary directory,
temporary directory application data is automatically cleaned up at the end of execution,
symlink-app-data
is alwaysFalse
when the application data is temporary
by @gaborbernat. (#1640)
Fix PyPy 2 builtin modules are imported from standard library, rather than from builtin - by @gaborbernat. (#1652)
Fix creation of entry points when path contains spaces - by @nsoranzo. (#1660)
Fix relative paths for the zipapp (for python
3.7+
) - by @gaborbernat. (#1666)
v20.0.5 (2020-02-21)¶
Features - 20.0.5¶
Also create
pythonX.X
executables when creating pypy virtualenvs - by @asottile (#1612)Fail with better error message if trying to install source with unsupported
setuptools
, allowsetuptools-scm >= 2
and move to legacysetuptools-scm
format to support better older platforms (CentOS 7
and such) - by @gaborbernat. (#1621)Report of the created virtual environment is now split across four short lines rather than one long - by @gaborbernat (#1641)
Bugfixes - 20.0.5¶
Add macOs Python 2 Framework support (now we test it with the CI via brew) - by @gaborbernat (#1561)
Fix losing of libpypy-c.so when the pypy executable is a symlink - by @asottile (#1614)
Discover python interpreter in a case insensitive manner - by @PrajwalM2212 (#1624)
Fix cross interpreter support when the host python sets
sys.base_executable
based on__PYVENV_LAUNCHER__
- by @cjolowicz (#1643)
v20.0.4 (2020-02-14)¶
v20.0.3 (2020-02-12)¶
Bugfixes - 20.0.3¶
On Python 2 with Apple Framework builds the global site package is no longer added when the
system-site-packages
is not specified - by @gaborbernat. (#1561)Fix system python discovery mechanism when prefixes contain relative parts (e.g.
..
) by resolving paths within the python information query - by @gaborbernat. (#1583)Expose a programmatic API as
from virtualenv import cli_run
- by @gaborbernat. (#1585)Fix
app-data
seeder
injects a extra.dist-info.virtualenv
path that breaksimportlib.metadata
, now we inject an extra.virtualenv
- by @gaborbernat. (#1589)
Improved Documentation - 20.0.3¶
Document a programmatic API as
from virtualenv import cli_run
under Programmatic API - by @gaborbernat. (#1585)
v20.0.2 (2020-02-11)¶
Features - 20.0.2¶
Print out a one line message about the created virtual environment when no
verbose
is set, this can now be silenced to get back the original behaviour via thequiet
flag - by @pradyunsg. (#1557)Allow virtualenv’s app data cache to be overridden by
VIRTUALENV_OVERRIDE_APP_DATA
- by @asottile. (#1559)Passing in the virtual environment name/path is now required (no longer defaults to
venv
) - by @gaborbernat. (#1568)Add a CLI flag
with-traceback
that allows displaying the stacktrace of the virtualenv when a failure occurs - by @gaborbernat. (#1572)
Bugfixes - 20.0.2¶
Support long path names for generated virtual environment console entry points (such as
pip
) when using theapp-data
seeder
- by @gaborbernat. (#997)Improve python discovery mechanism:
do not fail if there are executables that fail to query (e.g. for not having execute access to it) on the
PATH
,beside the prefix folder also try with the platform dependent binary folder within that,
by @gaborbernat. (#1545)
When copying (either files or trees) do not copy the permission bits, last access time, last modification time, and flags as access to these might be forbidden (for example in case of the macOs Framework Python) and these are not needed for the user to use the virtual environment - by @gaborbernat. (#1561)
While discovering a python executables interpreters that cannot be queried are now displayed with info level rather than warning, so now they’re no longer shown by default (these can be just executables to which we don’t have access or that are broken, don’t warn if it’s not the target Python we want) - by @gaborbernat. (#1574)
The
app-data
seeder
no longer symlinks the packages on UNIX and copies on Windows. Instead by default always copies, however now has thesymlink-app-data
flag allowing users to request this less robust but faster method - by @gaborbernat. (#1575)
Improved Documentation - 20.0.2¶
Add link to the legacy documentation for the changelog by @jezdez. (#1547)
Fine tune the documentation layout: default width of theme, allow tables to wrap around, soft corners for code snippets - by @pradyunsg. (#1548)
v20.0.1 (2020-02-10)¶
Features - 20.0.1¶
upgrade embedded setuptools to
45.2.0
from45.1.0
for Python3.4+
- by @gaborbernat. (#1554)
Bugfixes - 20.0.1¶
Virtual environments created via relative path on Windows creates bad console executables - by @gaborbernat. (#1552)
Seems sometimes venvs created set their base executable to themselves; we accept these without question, so we handle virtual environments as system pythons causing issues - by @gaborbernat. (#1553)
v20.0.0. (2020-02-10)¶
Improved Documentation - 20.0.0.¶
Fixes typos, repeated words and inconsistent heading spacing. Rephrase parts of the development documentation and CLI documentation. Expands shorthands like
env var
andconfig
to their full forms. Uses descriptions from respective documentation, for projects listed inrelated links
- by @pradyunsg. (#1540)
v20.0.0b2 (2020-02-04)¶
Features - 20.0.0b2¶
Improve 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 never 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),
by @gaborbernat. (#1515)
Generate
bash
andfish
activators on Windows too (as these can be available with git bash, cygwin or mysys2) - by @gaborbernat. (#1527)Upgrade the bundled
wheel
package from0.34.0
to0.34.2
- by @gaborbernat. (#1531)
Bugfixes - 20.0.0b2¶
Bash activation script should have no extensions instead of
.sh
(this fixes the virtualenvwrapper integration) - by @gaborbernat. (#1508)Show less information when we run with a single verbosity (
-v
):no longer shows accepted interpreters information (as the last proposed one is always the accepted one),
do not display the
str_spec
attribute forPythonSpec
as these can be deduced from the other attributes,for the
app-data
seeder do not show the type of lock, only the path to the app data directory,
By @gaborbernat. (#1510)
Fixed cannot discover a python interpreter that has already been discovered under a different path (such is the case when we have multiple symlinks to the same interpreter) - by @gaborbernat. (#1512)
Support relative paths for
-p
- by @gaborbernat. (#1514)Creating virtual environments in parallel fail with cannot acquire lock within app data - by @gaborbernat. (#1516)
pth files were not processed under Debian CPython2 interpreters - by @gaborbernat. (#1517)
Fix prompt not displayed correctly with upcoming fish 3.10 due to us not preserving
$pipestatus
- by @krobelus. (#1530)Stable order within
pyenv.cfg
and addinclude-system-site-packages
only for creators that reference a global Python - by user:gaborbernat. (#1535)
Improved Documentation - 20.0.0b2¶
Create the first iteration of the new documentation - by @gaborbernat. (#1465)
Project readme is now of type MarkDown instead of reStructuredText - by @gaborbernat. (#1531)
v20.0.0b1 (2020-01-28)¶
First public release of the rewrite. Everything is brand new and just added.
Warning
The current virtualenv is the second iteration of implementation. From version 0.8
all the way to 16.7.9
we numbered the first iteration. Version 20.0.0b1
is a complete rewrite of the package, and as such this release
history starts from there. The old changelog is still available in the
legacy branch documentation.