diff options
-rw-r--r-- | docs/changelog.rst | 37 | ||||
-rw-r--r-- | docs/changelog/1663.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changelog/1709.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/1710.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/1712.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changelog/1714.bugfix.rst | 1 | ||||
-rw-r--r-- | docs/changelog/1714.doc.rst | 2 | ||||
-rw-r--r-- | docs/changelog/1715.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/1716.feature.rst | 5 | ||||
-rw-r--r-- | docs/changelog/1719.bugfix.rst | 3 | ||||
-rw-r--r-- | docs/changelog/1721.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/1723.bugfix.rst | 2 | ||||
-rw-r--r-- | docs/changelog/1728.bugfix.rst | 1 |
13 files changed, 37 insertions, 24 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst index eda7d1d..ce2d8a2 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,43 @@ Release History .. towncrier release notes start +v20.0.11 (2020-03-18) +--------------------- + +Features - 20.0.11 +~~~~~~~~~~~~~~~~~~ +- Improve error message when the host python does not satisfy invariants needed to create virtual environments (now we + print which host files are incompatible/missing and for which creators when no supported creator can be matched, however + we found creators that can describe the given Python interpreter - will still print no supported creator for Jython, + but print exactly what host files do not allow creation of virtual environments in case of CPython/PyPy) + - by :user:`gaborbernat`. (`#1716 <https://github.com/pypa/virtualenv/issues/1716>`_) + +Bugfixes - 20.0.11 +~~~~~~~~~~~~~~~~~~ +- Support Python 3 Framework distributed via XCode in macOs Catalina and before - by :user:`gaborbernat`. (`#1663 <https://github.com/pypa/virtualenv/issues/1663>`_) +- Fix Windows Store Python support, do not allow creation via symlink as that's not going to work by design + - by :user:`gaborbernat`. (`#1709 <https://github.com/pypa/virtualenv/issues/1709>`_) +- Fix ``activate_this.py`` throws ``AttributeError`` on Windows when virtual environment was created via cross python + mechanism - by :user:`gaborbernat`. (`#1710 <https://github.com/pypa/virtualenv/issues/1710>`_) +- Fix ``--no-pip``, ``--no-setuptools``, ``--no-wheel`` not being respected - by :user:`gaborbernat`. (`#1712 <https://github.com/pypa/virtualenv/issues/1712>`_) +- Allow missing ``.py`` files if a compiled ``.pyc`` version is available - by :user:`tucked`. (`#1714 <https://github.com/pypa/virtualenv/issues/1714>`_) +- Do not fail if the distutils/setuptools patch happens on a C-extension loader (such as ``zipimporter`` on Python 3.7 or + earlier) - by :user:`gaborbernat`. (`#1715 <https://github.com/pypa/virtualenv/issues/1715>`_) +- Support Python 2 implementations that require the landmark files and ``site.py`` to be in platform standard library + instead of the standard library path of the virtual environment (notably some RHEL ones, such as the Docker + image ``amazonlinux:1``) - by :user:`gaborbernat`. (`#1719 <https://github.com/pypa/virtualenv/issues/1719>`_) +- Allow the test suite to pass even when called with the system Python - to help repackaging of the tool for Linux + distributions - by :user:`gaborbernat`. (`#1721 <https://github.com/pypa/virtualenv/issues/1721>`_) +- Also generate ``pipx.y`` console script beside ``pip-x.y`` to be compatible with how pip installs itself - + by :user:`gaborbernat`. (`#1723 <https://github.com/pypa/virtualenv/issues/1723>`_) +- Automatically create the application data folder if it does not exists - by :user:`gaborbernat`. (`#1728 <https://github.com/pypa/virtualenv/issues/1728>`_) + +Improved Documentation - 20.0.11 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +- :ref:`supports <compatibility-requirements>` details now explicitly what Python installations we support + - by :user:`gaborbernat`. (`#1714 <https://github.com/pypa/virtualenv/issues/1714>`_) + + v20.0.10 (2020-03-10) --------------------- diff --git a/docs/changelog/1663.bugfix.rst b/docs/changelog/1663.bugfix.rst deleted file mode 100644 index 9a6f779..0000000 --- a/docs/changelog/1663.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Support Python 3 Framework distributed via XCode in macOs Catalina and before - by :user:`gaborbernat`. diff --git a/docs/changelog/1709.bugfix.rst b/docs/changelog/1709.bugfix.rst deleted file mode 100644 index 5886419..0000000 --- a/docs/changelog/1709.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix Windows Store Python support, do not allow creation via symlink as that's not going to work by design -- by :user:`gaborbernat`. diff --git a/docs/changelog/1710.bugfix.rst b/docs/changelog/1710.bugfix.rst deleted file mode 100644 index d1561c0..0000000 --- a/docs/changelog/1710.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix ``activate_this.py`` throws ``AttributeError`` on Windows when virtual environment was created via cross python -mechanism - by :user:`gaborbernat`. diff --git a/docs/changelog/1712.bugfix.rst b/docs/changelog/1712.bugfix.rst deleted file mode 100644 index cd6a628..0000000 --- a/docs/changelog/1712.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix ``--no-pip``, ``--no-setuptools``, ``--no-wheel`` not being respected - by :user:`gaborbernat`. diff --git a/docs/changelog/1714.bugfix.rst b/docs/changelog/1714.bugfix.rst deleted file mode 100644 index 8a9bcaa..0000000 --- a/docs/changelog/1714.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Allow missing ``.py`` files if a compiled ``.pyc`` version is available - by :user:`tucked`. diff --git a/docs/changelog/1714.doc.rst b/docs/changelog/1714.doc.rst deleted file mode 100644 index e741744..0000000 --- a/docs/changelog/1714.doc.rst +++ /dev/null @@ -1,2 +0,0 @@ -:ref:`supports <compatibility-requirements>` details now explicitly what Python installations we support -- by :user:`gaborbernat`. diff --git a/docs/changelog/1715.bugfix.rst b/docs/changelog/1715.bugfix.rst deleted file mode 100644 index 91cf9b0..0000000 --- a/docs/changelog/1715.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Do not fail if the distutils/setuptools patch happens on a C-extension loader (such as ``zipimporter`` on Python 3.7 or -earlier) - by :user:`gaborbernat`. diff --git a/docs/changelog/1716.feature.rst b/docs/changelog/1716.feature.rst deleted file mode 100644 index 674b65d..0000000 --- a/docs/changelog/1716.feature.rst +++ /dev/null @@ -1,5 +0,0 @@ -Improve error message when the host python does not satisfy invariants needed to create virtual environments (now we -print which host files are incompatible/missing and for which creators when no supported creator can be matched, however -we found creators that can describe the given Python interpreter - will still print no supported creator for Jython, -but print exactly what host files do not allow creation of virtual environments in case of CPython/PyPy) -- by :user:`gaborbernat`. diff --git a/docs/changelog/1719.bugfix.rst b/docs/changelog/1719.bugfix.rst deleted file mode 100644 index 2c47726..0000000 --- a/docs/changelog/1719.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Support Python 2 implementations that require the landmark files and ``site.py`` to be in platform standard library -instead of the standard library path of the virtual environment (notably some RHEL ones, such as the Docker -image ``amazonlinux:1``) - by :user:`gaborbernat`. diff --git a/docs/changelog/1721.bugfix.rst b/docs/changelog/1721.bugfix.rst deleted file mode 100644 index 52acd48..0000000 --- a/docs/changelog/1721.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Allow the test suite to pass even when called with the system Python - to help repackaging of the tool for Linux -distributions - by :user:`gaborbernat`. diff --git a/docs/changelog/1723.bugfix.rst b/docs/changelog/1723.bugfix.rst deleted file mode 100644 index a6a07e6..0000000 --- a/docs/changelog/1723.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Also generate ``pipx.y`` console script beside ``pip-x.y`` to be compatible with how pip installs itself - -by :user:`gaborbernat`. diff --git a/docs/changelog/1728.bugfix.rst b/docs/changelog/1728.bugfix.rst deleted file mode 100644 index feb917c..0000000 --- a/docs/changelog/1728.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Automatically create the application data folder if it does not exists - by :user:`gaborbernat`. |