From 01e0f439f5009f37b95ab516e91906fcc7fcb8c3 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Wed, 6 Mar 2019 17:12:21 +0530 Subject: bpo-35807: Upgrade ensurepip bundled pip and setuptools (GH-12189) * Update pip to 19.0.3 * Update setuptools to 40.8.0 --- Lib/ensurepip/__init__.py | 4 ++-- Lib/ensurepip/_bundled/pip-18.1-py2.py3-none-any.whl | Bin 1323545 -> 0 bytes .../_bundled/pip-19.0.3-py2.py3-none-any.whl | Bin 0 -> 1353599 bytes .../_bundled/setuptools-40.6.2-py2.py3-none-any.whl | Bin 573107 -> 0 bytes .../_bundled/setuptools-40.8.0-py2.py3-none-any.whl | Bin 0 -> 575457 bytes .../Library/2019-03-06-13-21-33.bpo-35807.W7mmu3.rst | 1 + 6 files changed, 3 insertions(+), 2 deletions(-) delete mode 100644 Lib/ensurepip/_bundled/pip-18.1-py2.py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/pip-19.0.3-py2.py3-none-any.whl delete mode 100644 Lib/ensurepip/_bundled/setuptools-40.6.2-py2.py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/setuptools-40.8.0-py2.py3-none-any.whl create mode 100644 Misc/NEWS.d/next/Library/2019-03-06-13-21-33.bpo-35807.W7mmu3.rst diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 09c572db71..526dfd004a 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -8,9 +8,9 @@ import tempfile __all__ = ["version", "bootstrap"] -_SETUPTOOLS_VERSION = "40.6.2" +_SETUPTOOLS_VERSION = "40.8.0" -_PIP_VERSION = "18.1" +_PIP_VERSION = "19.0.3" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION), diff --git a/Lib/ensurepip/_bundled/pip-18.1-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-18.1-py2.py3-none-any.whl deleted file mode 100644 index c3c146f6da..0000000000 Binary files a/Lib/ensurepip/_bundled/pip-18.1-py2.py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/pip-19.0.3-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-19.0.3-py2.py3-none-any.whl new file mode 100644 index 0000000000..24f247caa0 Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-19.0.3-py2.py3-none-any.whl differ diff --git a/Lib/ensurepip/_bundled/setuptools-40.6.2-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-40.6.2-py2.py3-none-any.whl deleted file mode 100644 index 4c8a619571..0000000000 Binary files a/Lib/ensurepip/_bundled/setuptools-40.6.2-py2.py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/setuptools-40.8.0-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-40.8.0-py2.py3-none-any.whl new file mode 100644 index 0000000000..fdc66e9330 Binary files /dev/null and b/Lib/ensurepip/_bundled/setuptools-40.8.0-py2.py3-none-any.whl differ diff --git a/Misc/NEWS.d/next/Library/2019-03-06-13-21-33.bpo-35807.W7mmu3.rst b/Misc/NEWS.d/next/Library/2019-03-06-13-21-33.bpo-35807.W7mmu3.rst new file mode 100644 index 0000000000..1109fbed3f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-03-06-13-21-33.bpo-35807.W7mmu3.rst @@ -0,0 +1 @@ +Update ensurepip to install pip 19.0.3 and setuptools 40.8.0. -- cgit v1.2.1