diff --git a/NEWS.rst b/NEWS.rst index a0376a06f..6f7c2cd23 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -9,6 +9,22 @@ .. towncrier release notes start +20.2.3 (2020-09-08) +=================== + +Deprecations and Removals +------------------------- + +- Deprecate support for Python 3.5 (`#8181 `_) + +Features +-------- + +- Make the ``setup.py install`` deprecation warning less noisy. We warn only + when ``setup.py install`` succeeded and ``setup.py bdist_wheel`` failed, as + situations where both fails are most probably irrelevant to this deprecation. (`#8752 `_) + + 20.2.2 (2020-08-11) =================== diff --git a/news/8181.removal b/news/8181.removal deleted file mode 100644 index ae6bbe9f8..000000000 --- a/news/8181.removal +++ /dev/null @@ -1 +0,0 @@ -Deprecate support for Python 3.5 diff --git a/news/8752.feature b/news/8752.feature deleted file mode 100644 index d2560da18..000000000 --- a/news/8752.feature +++ /dev/null @@ -1,3 +0,0 @@ -Make the ``setup.py install`` deprecation warning less noisy. We warn only -when ``setup.py install`` succeeded and ``setup.py bdist_wheel`` failed, as -situations where both fails are most probably irrelevant to this deprecation. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 611753fed..9fb68d403 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -4,7 +4,7 @@ if MYPY_CHECK_RUNNING: from typing import List, Optional -__version__ = "20.2.2" +__version__ = "20.2.3" def main(args=None):