From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 7 Aug 2021 16:38:40 +0000 (-0700) Subject: Upgrade bundled pip and setuptools (GH-27625) X-Git-Tag: v3.10.0rc2~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7d6a0fe5b8001b63d452af5364422e40d06ac755;p=thirdparty%2FPython%2Fcpython.git Upgrade bundled pip and setuptools (GH-27625) pip is now 21.2.3 setuptools is now 57.4.0 (cherry picked from commit 738ac00a08cb6a9d104ec85ccb1a44c2399d6baa) Co-authored-by: Tzu-ping Chung --- diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 45c0981abbdd..f28ab11ed400 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -11,8 +11,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 index d96a40a9291f..000000000000 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 index 000000000000..d417df63d9ec Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl differ diff --git a/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl 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 264ef10e8266..af8f8ba21003 100644 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 index 000000000000..99f08065b9d2 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst @@ -0,0 +1 @@ +Upgrade bundled pip to 21.2.3 and setuptools to 57.4.0