diff options
author | Bernat Gabor <bgabor8@bloomberg.net> | 2019-01-25 14:35:24 +0000 |
---|---|---|
committer | Bernat Gabor <bgabor8@bloomberg.net> | 2019-01-25 14:35:24 +0000 |
commit | 591282f224d5d128f4452a319e0ed9a3bcb058c1 (patch) | |
tree | 81616cb6db8aa61edeb57157831c9ed5e6c9269b | |
parent | cfd9c816bfaa22db1410ca9ec2223982daf94a42 (diff) | |
download | virtualenv-16.3.0.tar.gz |
release 16.3.016.3.0
-rw-r--r-- | docs/changelog/1061.doc.rst | 1 | ||||
-rw-r--r-- | docs/changelog/1092.feature.rst | 3 | ||||
-rw-r--r-- | docs/changelog/1273.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changelog/1277.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changelog/1281.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changelog/1282.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/1291.feature.rst | 1 | ||||
-rw-r--r-- | docs/changelog/955.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changes.rst | 29 |
9 files changed, 29 insertions, 11 deletions
diff --git a/docs/changelog/1061.doc.rst b/docs/changelog/1061.doc.rst deleted file mode 100644 index 6a3d436..0000000 --- a/docs/changelog/1061.doc.rst +++ /dev/null @@ -1 +0,0 @@ -discourage installation as ``root``, including ``sudo`` - by ``altendky`` diff --git a/docs/changelog/1092.feature.rst b/docs/changelog/1092.feature.rst deleted file mode 100644 index 6226ceb..0000000 --- a/docs/changelog/1092.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -Enable virtualenv to be distributed as a ``zipapp`` or to be run as a -wheel with ``PYTHONPATH=virtualenv...any.whl python -mvirtualenv`` - by -Anthony Sottile diff --git a/docs/changelog/1273.bugfix.rst b/docs/changelog/1273.bugfix.rst deleted file mode 100644 index 15405a2..0000000 --- a/docs/changelog/1273.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Preserve ``cert`` option defined in ``pip.conf`` or environment variable. diff --git a/docs/changelog/1277.bugfix.rst b/docs/changelog/1277.bugfix.rst deleted file mode 100644 index 66fab7f..0000000 --- a/docs/changelog/1277.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -fixed a ``ResourceWarning: unclosed file`` in ``call_subprocess()`` - by Mickaël Schoentgen diff --git a/docs/changelog/1281.bugfix.rst b/docs/changelog/1281.bugfix.rst deleted file mode 100644 index eaef841..0000000 --- a/docs/changelog/1281.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -pre-import some built-in modules in ``site.py`` on PyPy according to PyPy's ``site.py`` - by microdog diff --git a/docs/changelog/1282.bugfix.rst b/docs/changelog/1282.bugfix.rst deleted file mode 100644 index 8eb6250..0000000 --- a/docs/changelog/1282.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Copy files from ``sys.exec_prefix`` only if it is really different path than -used prefix, bugfix for #1270 diff --git a/docs/changelog/1291.feature.rst b/docs/changelog/1291.feature.rst deleted file mode 100644 index c0032f1..0000000 --- a/docs/changelog/1291.feature.rst +++ /dev/null @@ -1 +0,0 @@ -bump vendored pip from ``18.1`` to ``19.0.1`` diff --git a/docs/changelog/955.bugfix.rst b/docs/changelog/955.bugfix.rst deleted file mode 100644 index 24ff25a..0000000 --- a/docs/changelog/955.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Use ``importlib`` over deprecated ``imp` in ``distutils/__init__.py`` for python 3 - by Anthony Sottile diff --git a/docs/changes.rst b/docs/changes.rst index 1bc5a29..ae40de7 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,35 @@ Release History .. towncrier release notes start +v16.3.0 (2019-01-25) +-------------------- + +Bugfixes +^^^^^^^^ + +- Use ``importlib`` over deprecated ``imp` in ``distutils/__init__.py`` for python 3 - by Anthony Sottile (`#955 <https://github.com/pypa/virtualenv/issues/955>`_) +- Preserve ``cert`` option defined in ``pip.conf`` or environment variable. (`#1273 <https://github.com/pypa/virtualenv/issues/1273>`_) +- fixed a ``ResourceWarning: unclosed file`` in ``call_subprocess()`` - by Mickaël Schoentgen (`#1277 <https://github.com/pypa/virtualenv/issues/1277>`_) +- pre-import some built-in modules in ``site.py`` on PyPy according to PyPy's ``site.py`` - by microdog (`#1281 <https://github.com/pypa/virtualenv/issues/1281>`_) +- Copy files from ``sys.exec_prefix`` only if it is really different path than + used prefix, bugfix for #1270 (`#1282 <https://github.com/pypa/virtualenv/issues/1282>`_) + + +Features +^^^^^^^^ + +- Enable virtualenv to be distributed as a ``zipapp`` or to be run as a + wheel with ``PYTHONPATH=virtualenv...any.whl python -mvirtualenv`` - by + Anthony Sottile (`#1092 <https://github.com/pypa/virtualenv/issues/1092>`_) +- bump vendored pip from ``18.1`` to ``19.0.1`` (`#1291 <https://github.com/pypa/virtualenv/issues/1291>`_) + + +Documentation +^^^^^^^^^^^^^ + +- discourage installation as ``root``, including ``sudo`` - by ``altendky`` (`#1061 <https://github.com/pypa/virtualenv/issues/1061>`_) + + v16.2.0 (2018-12-31) -------------------- |