diff options
author | Stéphane Bidoul <stephane.bidoul@acsone.eu> | 2021-04-24 22:28:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 22:28:55 (GMT) |
commit | fc82f3f8fb36f88a4e7238a463812c2916bd4db0 (patch) | |
tree | aa6901f19d75f685de76e1e08c587c7df8610c5d | |
parent | e92d1106291e5a7d4970372478f2882056b7eb3a (diff) | |
download | cpython-fc82f3f8fb36f88a4e7238a463812c2916bd4db0.zip cpython-fc82f3f8fb36f88a4e7238a463812c2916bd4db0.tar.gz cpython-fc82f3f8fb36f88a4e7238a463812c2916bd4db0.tar.bz2 |
[3.8] bpo-43930: Update bundled pip to 21.1 and setuptools to 56.0.0 (GH-25576) (GH-25579)
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>
-rw-r--r-- | Lib/ensurepip/__init__.py | 7 | ||||
-rw-r--r-- | Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl (renamed from Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl) | bin | 1503696 -> 1547115 bytes | |||
-rw-r--r-- | Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl (renamed from Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl) | bin | 789827 -> 784941 bytes | |||
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst | 1 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 38bb421..d779870 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -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"), ] diff --git a/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl Binary files differindex 7ebdc0f..59395be 100644 --- a/Lib/ensurepip/_bundled/pip-20.2.3-py2.py3-none-any.whl +++ b/Lib/ensurepip/_bundled/pip-21.1-py3-none-any.whl diff --git a/Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl Binary files differindex 308e2f2..264ef10 100644 --- a/Lib/ensurepip/_bundled/setuptools-49.2.1-py3-none-any.whl +++ b/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl 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 index 0000000..7dac21f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-04-24-14-23-07.bpo-43930.R7ah0m.rst @@ -0,0 +1 @@ +Update bundled pip to 21.1 and setuptools to 56.0.0
\ No newline at end of file |