8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7f3f19 commit f7d912aCopy full SHA for f7d912a
NEWS.rst
@@ -1,3 +1,16 @@
1
+21.2.2 (2021-07-31)
2
+===================
3
+
4
5
6
+Bug Fixes
7
+---------
8
9
+- New resolver: When a package is specified with extras in constraints, and with
10
+ extras in non-constraint requirements, the resolver now correctly identifies the
11
+ constraint's existence and avoids backtracking. (`#10233 <https://github.com/pypa/pip/issues/10233>`_)
12
13
14
21.2.1 (2021-07-25)
15
===================
16
news/10233.bugfix.rst
src/pip/__init__.py
@@ -1,6 +1,6 @@
from typing import List, Optional
-__version__ = "21.2.1"
+__version__ = "21.2.2"
def main(args: Optional[List[str]] = None) -> int:
0 commit comments