]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.8] bpo-43930: Update bundled pip to 21.1 and setuptools to 56.0.0 (GH-25576) ...
authorStéphane Bidoul <stephane.bidoul@acsone.eu>
Sat, 24 Apr 2021 22:28:55 +0000 (00:28 +0200)
committerGitHub <noreply@github.com>
Sat, 24 Apr 2021 22:28:55 +0000 (23:28 +0100)
Update bundled pip to 21.1 and setuptools to 56.0.0.
(cherry picked from commit 196983563d05e32d2dcf217e955a919f9e0c25e1)

Co-authored-by: Stéphane Bidoul <stephane.bidoul@acsone.eu>
Lib/ensurepip/__init__.py
Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl [moved from Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl with 51% similarity]
Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl [moved from Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl with 66% similarity]
Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst [new file with mode: 0644]

index 38bb42104b550f1f690dbec708df38f8f81ab6ff..d77987011d3a8b259ac8b27fe5d6faf0b9b39123 100644 (file)
@@ -9,14 +9,13 @@ import subprocess
 
 __all__ = ["version", "bootstrap"]
 
+_SETUPTOOLS_VERSION = "56.0.0"
 
-_SETUPTOOLS_VERSION = "49.2.1"
-
-_PIP_VERSION = "20.2.3"
+_PIP_VERSION = "21.1"
 
 _PROJECTS = [
     ("setuptools", _SETUPTOOLS_VERSION, "py3"),
-    ("pip", _PIP_VERSION, "py2.py3"),
+    ("pip", _PIP_VERSION, "py3"),
 ]
 
 
similarity index 51%
rename from Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl
rename to Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl
index 7ebdc0f31d4e3ec28cab71df496213e7be7711bf..59395be72f135f40c9e485280c350d9315ecc6be 100644 (file)
Binary files a/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl and b/Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl differ
similarity index 66%
rename from Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl
rename to Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
index 308e2f2ed5ed9b3697944c8f8ff24d7853159891..264ef10e8266795ddbc54885d40aa3de1803daa6 100644 (file)
Binary files a/Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl and b/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl differ
diff --git a/Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst b/Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst
new file mode 100644 (file)
index 0000000..7dac21f
--- /dev/null
@@ -0,0 +1 @@
+Update bundled pip to 21.1 and setuptools to 56.0.0
\ No newline at end of file