]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-149148: Upgrade bundled pip to 26.1 (GH-149150) (#149155)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 29 Apr 2026 14:53:55 +0000 (16:53 +0200)
committerGitHub <noreply@github.com>
Wed, 29 Apr 2026 14:53:55 +0000 (14:53 +0000)
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Lib/ensurepip/__init__.py
Lib/ensurepip/_bundled/pip-26.1-py3-none-any.whl [moved from Lib/ensurepip/_bundled/pip-26.0.1-py3-none-any.whl with 73% similarity]
Misc/NEWS.d/next/Library/2026-04-29-14-33-42.gh-issue-149148.EaiYvk.rst [new file with mode: 0644]

index 9f4e64bc78bdf936d3c8e7e7bbc4c716038c9bd3..65179721478992011387302088ae7fd29b8295a4 100644 (file)
@@ -10,7 +10,7 @@ from shutil import copy2
 
 
 __all__ = ["version", "bootstrap"]
-_PIP_VERSION = "26.0.1"
+_PIP_VERSION = "26.1"
 
 # Directory of system wheel packages. Some Linux distribution packaging
 # policies recommend against bundling dependencies. For example, Fedora
similarity index 73%
rename from Lib/ensurepip/_bundled/pip-26.0.1-py3-none-any.whl
rename to Lib/ensurepip/_bundled/pip-26.1-py3-none-any.whl
index 580d09a920422fcabbd462c937d08c96dd7f08bc..b51afa14f7c0ad88a192f4bf606775653df23681 100644 (file)
Binary files a/Lib/ensurepip/_bundled/pip-26.0.1-py3-none-any.whl and b/Lib/ensurepip/_bundled/pip-26.1-py3-none-any.whl differ
diff --git a/Misc/NEWS.d/next/Library/2026-04-29-14-33-42.gh-issue-149148.EaiYvk.rst b/Misc/NEWS.d/next/Library/2026-04-29-14-33-42.gh-issue-149148.EaiYvk.rst
new file mode 100644 (file)
index 0000000..0618677
--- /dev/null
@@ -0,0 +1,2 @@
+:mod:`ensurepip`: Upgrade bundled pip to 26.1. This version fixes
+the :cve:`2026-3219` vulnerability. Patch by Victor Stinner.