Skip to content

Commit

Permalink
Bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Aug 11, 2020
1 parent b9e403b commit e16ebf1
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 14 deletions.
19 changes: 19 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
===================

Expand Down
Empty file.
3 changes: 0 additions & 3 deletions news/8090.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions news/8695.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions news/8701.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions news/8716.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/8717.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions news/8724.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion src/pip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from typing import List, Optional


__version__ = "20.2.1"
__version__ = "20.2.2"


def main(args=None):
Expand Down

0 comments on commit e16ebf1

Please sign in to comment.