Merge pull request #11102 from pradyunsg/release/22.1

This commit is contained in:
Pradyun Gedam 2022-05-11 20:58:53 +01:00 committed by GitHub
commit 1d41abbb43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 21 additions and 8 deletions

View File

@ -402,6 +402,7 @@ Masklinn
Matej Stuchlik
Mathew Jennings
Mathieu Bridon
Mathieu Kniewallner
Matt Bacchi
Matt Good
Matt Maker

View File

@ -9,6 +9,25 @@
.. towncrier release notes start
22.1 (2022-05-11)
=================
Process
-------
- Enable the ``importlib.metadata`` metadata implementation by default on
Python 3.11 (or later). The environment variable ``_PIP_USE_IMPORTLIB_METADATA``
can still be used to enable the implementation on 3.10 and earlier, or disable
it on 3.11 (by setting it to ``0`` or ``false``).
Bug Fixes
---------
- Revert `#9243 <https://github.com/pypa/pip/issues/9243>`_ since it introduced a regression in certain edge cases. (`#10962 <https://github.com/pypa/pip/issues/10962>`_)
- Fix missing ``REQUESTED`` metadata when using URL constraints. (`#11079 <https://github.com/pypa/pip/issues/11079>`_)
- ``pip config`` now normalizes names by converting underscores into dashes. (`#9330 <https://github.com/pypa/pip/issues/9330>`_)
22.1b1 (2022-04-30)
===================

View File

@ -1 +0,0 @@
Revert `#9243 <https://github.com/pypa/pip/issues/9243>`_ since it introduced a regression in certain edge cases.

View File

@ -1,4 +0,0 @@
Enable the ``importlib.metadata`` metadata implementation by default on
Python 3.11 (or later). The environment variable ``_PIP_USE_IMPORTLIB_METADATA``
can still be used to enable the implementation on 3.10 and earlier, or disable
it on 3.11 (by setting it to ``0`` or ``false``).

View File

@ -1 +0,0 @@
Fix missing ``REQUESTED`` metadata when using URL constraints.

View File

@ -1 +0,0 @@
``pip config`` now normalizes names by converting underscores into dashes.

View File

@ -1,6 +1,6 @@
from typing import List, Optional
__version__ = "22.1.dev1"
__version__ = "22.2.dev0"
def main(args: Optional[List[str]] = None) -> int: