From 55438d713978a1913ef12c8a801848626228aad6 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Fri, 8 Mar 2019 13:45:01 -0800 Subject: bpo-35807: Upgrade ensurepip bundled pip and setuptools (GH-12189) * Update pip to 19.0.3 * Update setuptools to 40.8.0 (cherry picked from commit 01e0f439f5009f37b95ab516e91906fcc7fcb8c3) Co-authored-by: Pradyun Gedam --- 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 5021ebf..cbadfaa 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -12,9 +12,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 c3c146f..0000000 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 0000000..24f247c 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 4c8a619..0000000 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 0000000..fdc66e9 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 0000000..1109fbe --- /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 v0.12