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:14:25 +0100 |
commit | 9e1c57f7ad1f75a9b7c39092a7248f9dab51cbec (patch) | |
tree | d8e5dcbb84dd2f8d820c38f22537be21689a2355 | |
parent | b0e0aab54d56da1495a235ced0db7f0daa2a16c6 (diff) | |
download | virtualenv-16.1.2.tar.gz |
release 16.1.216.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 |
3 files changed, 12 insertions, 4 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..c2941d7 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,17 @@ Release History .. towncrier release notes start +v16.1.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): |