]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Upgrade bundled pip and setuptools (#27625)
authorTzu-ping Chung <uranusjr@gmail.com>
Fri, 6 Aug 2021 18:22:48 +0000 (02:22 +0800)
committerGitHub <noreply@github.com>
Fri, 6 Aug 2021 18:22:48 +0000 (20:22 +0200)
pip is now 21.2.3
setuptools is now 57.4.0

Lib/ensurepip/__init__.py
Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl [deleted file]
Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl [new file with mode: 0644]
Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl [moved from Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl with 65% similarity]
Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst [new file with mode: 0644]

index 28e12537e9fff4e4c3ad9da26460accda5c27c88..651f876e24bc8bacaff0db1221e8fe504814139b 100644 (file)
@@ -10,8 +10,8 @@ from importlib import resources
 
 __all__ = ["version", "bootstrap"]
 _PACKAGE_NAMES = ('setuptools', 'pip')
-_SETUPTOOLS_VERSION = "56.0.0"
-_PIP_VERSION = "21.1.3"
+_SETUPTOOLS_VERSION = "57.4.0"
+_PIP_VERSION = "21.2.3"
 _PROJECTS = [
     ("setuptools", _SETUPTOOLS_VERSION, "py3"),
     ("pip", _PIP_VERSION, "py3"),
diff --git a/Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl
deleted file mode 100644 (file)
index d96a40a..0000000
Binary files a/Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl and /dev/null differ
diff --git a/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl
new file mode 100644 (file)
index 0000000..d417df6
Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl differ
similarity index 65%
rename from Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl
rename to Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl
index 264ef10e8266795ddbc54885d40aa3de1803daa6..af8f8ba21003b1f24d315f5a0c4de6168f35c9f4 100644 (file)
Binary files a/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl and b/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl differ
diff --git a/Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst b/Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst
new file mode 100644 (file)
index 0000000..99f0806
--- /dev/null
@@ -0,0 +1 @@
+Upgrade bundled pip to 21.2.3 and setuptools to 57.4.0\r