From 05293b6b55eca86490b7c2944bcc558a56064f0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sun, 27 Oct 2024 19:07:08 +0100 Subject: [PATCH 1/2] Bump for release --- NEWS.rst | 10 +++++++++- news/13046.bugfix.rst | 1 - src/pip/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) delete mode 100644 news/13046.bugfix.rst diff --git a/NEWS.rst b/NEWS.rst index eb06d0ef39c..5ebf7141b1d 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -9,7 +9,15 @@ .. towncrier release notes start -24.3 (2024-10-26) +24.3.1 (2024-10-27) +=================== + +Bug Fixes +--------- + +- Allow multiple nested inclusions of the same requirements file again. (`#13046 `_) + +24.3 (2024-10-27) ================= Deprecations and Removals diff --git a/news/13046.bugfix.rst b/news/13046.bugfix.rst deleted file mode 100644 index 41aae012414..00000000000 --- a/news/13046.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Allow multiple inclusion of the same requirements file again. diff --git a/src/pip/__init__.py b/src/pip/__init__.py index 4eff4299c01..efefccffc7a 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1,6 +1,6 @@ from typing import List, Optional -__version__ = "25.0.dev0" +__version__ = "24.3.1" def main(args: Optional[List[str]] = None) -> int: From 0f9e23806a3cd527191039c58cce13e69abf91b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sun, 27 Oct 2024 19:07:10 +0100 Subject: [PATCH 2/2] 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 efefccffc7a..4eff4299c01 100644 --- a/src/pip/__init__.py +++ b/src/pip/__init__.py @@ -1,6 +1,6 @@ from typing import List, Optional -__version__ = "24.3.1" +__version__ = "25.0.dev0" def main(args: Optional[List[str]] = None) -> int: