From 65f096c432d60d5f0214793becd592e1c1c3b624 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Thu, 3 Feb 2022 08:22:32 +0000 Subject: [PATCH 1/3] Update AUTHORS.txt --- AUTHORS.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AUTHORS.txt b/AUTHORS.txt index 7768a4cd918..bcca65bf521 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -385,6 +385,7 @@ Mariatta Mark Kohler Mark Williams Markus Hametner +Martey Dodoo Martin Häcker Martin Pavlasek Masaki @@ -392,6 +393,7 @@ Masklinn Matej Stuchlik Mathew Jennings Mathieu Bridon +Matt Bacchi Matt Good Matt Maker Matt Robenolt @@ -512,6 +514,7 @@ Preet Thakkar Preston Holmes Przemek Wrzos Pulkit Goyal +q0w Qiangning Hong Quentin Lee Quentin Pradet From 44018de50cafba25445a225c1a1986d6312e1ef3 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Thu, 3 Feb 2022 08:22:34 +0000 Subject: [PATCH 2/3] Bump for release --- NEWS.rst | 22 ++++++++++++++++++++++ news/10791.feature.rst | 1 - news/10851.bugfix.rst | 3 --- news/10869.bugfix.rst | 1 - news/9674.doc.rst | 1 - src/pip/__init__.py | 2 +- 6 files changed, 23 insertions(+), 7 deletions(-) delete mode 100644 news/10791.feature.rst delete mode 100644 news/10851.bugfix.rst delete mode 100644 news/10869.bugfix.rst delete mode 100644 news/9674.doc.rst diff --git a/NEWS.rst b/NEWS.rst index a14592d6b16..55ab46927cf 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -9,6 +9,28 @@ .. towncrier release notes start +22.0.3 (2022-02-03) +=================== + +Features +-------- + +- Print the exception via ``rich.traceback``, when running with ``--debug``. (`#10791 `_) + +Bug Fixes +--------- + +- Only calculate topological installation order, for packages that are going to be installed/upgraded. + + 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 `_) +- Use ``html.parser`` by default, instead of falling back to ``html5lib`` when ``--use-deprecated=html5lib`` is not passed. (`#10869 `_) + +Improved Documentation +---------------------- + +- Clarify that using per-requirement overrides disables the usage of wheels. (`#9674 `_) + + 22.0.2 (2022-01-30) =================== diff --git a/news/10791.feature.rst b/news/10791.feature.rst deleted file mode 100644 index be41c6b7e21..00000000000 --- a/news/10791.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Print the exception via ``rich.traceback``, when running with ``--debug``. diff --git a/news/10851.bugfix.rst b/news/10851.bugfix.rst deleted file mode 100644 index 8ecc7c7c4b4..00000000000 --- a/news/10851.bugfix.rst +++ /dev/null @@ -1,3 +0,0 @@ -Only calculate topological installation order, for packages that are going to be installed/upgraded. - -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. diff --git a/news/10869.bugfix.rst b/news/10869.bugfix.rst deleted file mode 100644 index 9b19368f8d2..00000000000 --- a/news/10869.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Use ``html.parser`` by default, instead of falling back to ``html5lib`` when ``--use-deprecated=html5lib`` is not passed. diff --git a/news/9674.doc.rst b/news/9674.doc.rst deleted file mode 100644 index dd5b68420ec..00000000000 --- a/news/9674.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Clarify that using per-requirement overrides disables the usage of wheels. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 519b304f090..1abe3d78e3c 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1,6 +1,6 @@ from typing import List, Optional -__version__ = "22.1.dev0" +__version__ = "22.0.3" def main(args: Optional[List[str]] = None) -> int: From 1fa4d5fd22cc67ad59a9a1e02a838640f1b36627 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Thu, 3 Feb 2022 08:22:34 +0000 Subject: [PATCH 3/3] Bump for development --- src/pip/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 1abe3d78e3c..519b304f090 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1,6 +1,6 @@ from typing import List, Optional -__version__ = "22.0.3" +__version__ = "22.1.dev0" def main(args: Optional[List[str]] = None) -> int: