diff options
author | Tzu-ping Chung <uranusjr@gmail.com> | 2021-08-09 14:46:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 14:46:15 (GMT) |
commit | 26539cea8ad3256f5385268a1a70847f64b1865d (patch) | |
tree | 9224864a7ff336912d6dba6885676a791d2d72d4 | |
parent | 037ef8d6d9cc8225d6db0305cee2d8d0ee5bee74 (diff) | |
download | cpython-26539cea8ad3256f5385268a1a70847f64b1865d.zip cpython-26539cea8ad3256f5385268a1a70847f64b1865d.tar.gz cpython-26539cea8ad3256f5385268a1a70847f64b1865d.tar.bz2 |
[3.9] Upgrade bundled pip and setuptools (GH-27625) (GH-27658)
pip is now 21.2.3
setuptools is now 57.4.0.
(cherry picked from commit 738ac00a08cb6a9d104ec85ccb1a44c2399d6baa)
Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com>
-rw-r--r-- | Lib/ensurepip/__init__.py | 4 | ||||
-rw-r--r-- | Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl | bin | 1548027 -> 0 bytes | |||
-rw-r--r-- | Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl | bin | 0 -> 1563443 bytes | |||
-rw-r--r-- | Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl (renamed from Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl) | bin | 784941 -> 819017 bytes | |||
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-08-06-19-15-52.bpo-44581.oFDBTB.rst | 1 |
5 files changed, 3 insertions, 2 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 14a3903..7b03970 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -13,9 +13,9 @@ from . import _bundled __all__ = ["version", "bootstrap"] -_SETUPTOOLS_VERSION = "56.0.0" +_SETUPTOOLS_VERSION = "57.4.0" -_PIP_VERSION = "21.1.3" +_PIP_VERSION = "21.2.3" _PROJECTS = [ ("setuptools", _SETUPTOOLS_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 Binary files differdeleted file mode 100644 index d96a40a..0000000 --- a/Lib/ensurepip/_bundled/pip-21.1.3-py3-none-any.whl +++ /dev/null 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 Binary files differnew file mode 100644 index 0000000..d417df6 --- /dev/null +++ b/Lib/ensurepip/_bundled/pip-21.2.3-py3-none-any.whl 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 Binary files differindex 264ef10..af8f8ba 100644 --- a/Lib/ensurepip/_bundled/setuptools-56.0.0-py3-none-any.whl +++ b/Lib/ensurepip/_bundled/setuptools-57.4.0-py3-none-any.whl 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 0000000..99f0806 --- /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
|