diff options
author | Bernat Gabor <bgabor8@bloomberg.net> | 2019-07-14 22:14:11 +0100 |
---|---|---|
committer | Bernat Gabor <bgabor8@bloomberg.net> | 2019-07-14 22:18:34 +0100 |
commit | 1d4702a9613ec4a877c86f9db57d6687492e9e6e (patch) | |
tree | 4eb12886ca1827cd5821ff61c51d512bb2ad199c | |
parent | b0e0aab54d56da1495a235ced0db7f0daa2a16c6 (diff) | |
download | virtualenv-release-16.1.2.tar.gz |
release 16.6.2release-16.1.2
-rw-r--r-- | docs/changelog/1382.bugfix.rst | 3 | ||||
-rw-r--r-- | docs/changes.rst | 11 | ||||
-rw-r--r-- | tests/test_zipapp.py | 2 | ||||
-rwxr-xr-x | virtualenv.py | 2 |
4 files changed, 13 insertions, 5 deletions
diff --git a/docs/changelog/1382.bugfix.rst b/docs/changelog/1382.bugfix.rst deleted file mode 100644 index c497af5..0000000 --- a/docs/changelog/1382.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Extend the LICESNE search paths list by ``lib64/pythonX.Y`` to support Linux -vendors who install their Python to ``/usr/lib64/pythonX.Y`` (Gentoo, Fedora, -openSUSE, RHEL and others) - by ``hroncok`` diff --git a/docs/changes.rst b/docs/changes.rst index 27d4cc4..144dc19 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,17 @@ Release History .. towncrier release notes start +v16.6.2 (2019-07-14) +-------------------- + +Bugfixes +^^^^^^^^ + +- Extend the LICESNE search paths list by ``lib64/pythonX.Y`` to support Linux + vendors who install their Python to ``/usr/lib64/pythonX.Y`` (Gentoo, Fedora, + openSUSE, RHEL and others) - by ``hroncok`` (`#1382 <https://github.com/pypa/virtualenv/issues/1382>`_) + + v16.6.1 (2019-06-16) -------------------- diff --git a/tests/test_zipapp.py b/tests/test_zipapp.py index 2a17ade..8f90bf8 100644 --- a/tests/test_zipapp.py +++ b/tests/test_zipapp.py @@ -22,7 +22,7 @@ def call_zipapp(tmp_path_factory): pytest.skip("zipapp was introduced in python3.5") pyz = str(tmp_path_factory.mktemp(basename="zipapp") / "virtualenv.pyz") subprocess.check_call( - (_python("3"), os.path.join(HERE, "tasks/make_zipapp.py"), "--root", virtualenv.HERE, "--dest", pyz) + (sys.executable, os.path.join(HERE, "tasks/make_zipapp.py"), "--root", virtualenv.HERE, "--dest", pyz) ) def zipapp_make_env(path, python=None): diff --git a/virtualenv.py b/virtualenv.py index f5dc478..cf60f28 100755 --- a/virtualenv.py +++ b/virtualenv.py @@ -44,7 +44,7 @@ except ImportError: # noinspection PyPep8Naming import configparser as ConfigParser -__version__ = "16.6.1" +__version__ = "16.6.2" virtualenv_version = __version__ # legacy DEBUG = os.environ.get("_VIRTUALENV_DEBUG", None) == "1" if sys.version_info < (2, 7): |