Bump for release

This commit is contained in:
Pradyun Gedam 2020-08-11 16:56:41 +05:30
parent b9e403b173
commit e16ebf1b7f
No known key found for this signature in database
GPG Key ID: FF99710C4332258E
9 changed files with 20 additions and 14 deletions

View File

@ -9,6 +9,25 @@
.. towncrier release notes start
20.2.2 (2020-08-11)
===================
Bug Fixes
---------
- Only attempt to use the keyring once and if it fails, don't try again.
This prevents spamming users with several keyring unlock prompts when they
cannot unlock or don't want to do so. (`#8090 <https://github.com/pypa/pip/issues/8090>`_)
- Fix regression that distributions in system site-packages are not correctly
found when a virtual environment is configured with ``system-site-packages``
on. (`#8695 <https://github.com/pypa/pip/issues/8695>`_)
- Disable caching for range requests, which causes corrupted wheels
when pip tries to obtain metadata using the feature ``fast-deps``. (`#8701 <https://github.com/pypa/pip/issues/8701>`_, `#8716 <https://github.com/pypa/pip/issues/8716>`_)
- Always use UTF-8 to read ``pyvenv.cfg`` to match the built-in ``venv``. (`#8717 <https://github.com/pypa/pip/issues/8717>`_)
- 2020 Resolver: Correctly handle marker evaluation in constraints and exclude
them if their markers do not match the current environment. (`#8724 <https://github.com/pypa/pip/issues/8724>`_)
20.2.1 (2020-08-04)
===================

View File

@ -1,3 +0,0 @@
Only attempt to use the keyring once and if it fails, don't try again.
This prevents spamming users with several keyring unlock prompts when they
cannot unlock or don't want to do so.

View File

@ -1,3 +0,0 @@
Fix regression that distributions in system site-packages are not correctly
found when a virtual environment is configured with ``system-site-packages``
on.

View File

@ -1,2 +0,0 @@
Disable caching for range requests, which causes corrupted wheels
when pip tries to obtain metadata using the feature ``fast-deps``.

View File

@ -1,2 +0,0 @@
Disable caching for range requests, which causes corrupted wheels
when pip tries to obtain metadata using the feature ``fast-deps``.

View File

@ -1 +0,0 @@
Always use UTF-8 to read ``pyvenv.cfg`` to match the built-in ``venv``.

View File

@ -1,2 +0,0 @@
2020 Resolver: Correctly handle marker evaluation in constraints and exclude
them if their markers do not match the current environment.

View File

@ -4,7 +4,7 @@ if MYPY_CHECK_RUNNING:
from typing import List, Optional
__version__ = "20.2.1"
__version__ = "20.2.2"
def main(args=None):