Skip to content

Commit 44018de

Browse files
committed
Bump for release
1 parent 65f096c commit 44018de

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

NEWS.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@
99
1010
.. towncrier release notes start
1111
12+
22.0.3 (2022-02-03)
13+
===================
14+
15+
Features
16+
--------
17+
18+
- Print the exception via ``rich.traceback``, when running with ``--debug``. (`#10791 <https://github.com/pypa/pip/issues/10791>`_)
19+
20+
Bug Fixes
21+
---------
22+
23+
- Only calculate topological installation order, for packages that are going to be installed/upgraded.
24+
25+
This fixes an `AssertionError` that occured when determining installation order, for a very specific combination of upgrading-already-installed-package + change of dependencies + fetching some packages from a package index. This combination was especially common in Read the Docs' builds. (`#10851 <https://github.com/pypa/pip/issues/10851>`_)
26+
- Use ``html.parser`` by default, instead of falling back to ``html5lib`` when ``--use-deprecated=html5lib`` is not passed. (`#10869 <https://github.com/pypa/pip/issues/10869>`_)
27+
28+
Improved Documentation
29+
----------------------
30+
31+
- Clarify that using per-requirement overrides disables the usage of wheels. (`#9674 <https://github.com/pypa/pip/issues/9674>`_)
32+
33+
1234
22.0.2 (2022-01-30)
1335
===================
1436

news/10791.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/10851.bugfix.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

news/10869.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/9674.doc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/pip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import List, Optional
22

3-
__version__ = "22.1.dev0"
3+
__version__ = "22.0.3"
44

55

66
def main(args: Optional[List[str]] = None) -> int:

0 commit comments

Comments
 (0)