From feb0846c3a28b05b4cfbc6ab34c764957f3eff55 Mon Sep 17 00:00:00 2001 From: Xavier Fernandez Date: Wed, 27 May 2020 12:49:34 +0200 Subject: Upgrade bundled versions of pip & setuptools (#16782) --- Lib/ensurepip/__init__.py | 12 ++++++------ .../_bundled/pip-19.2.3-py2.py3-none-any.whl | Bin 1414986 -> 0 bytes Lib/ensurepip/_bundled/pip-20.1-py2.py3-none-any.whl | Bin 0 -> 1489786 bytes .../_bundled/setuptools-41.2.0-py2.py3-none-any.whl | Bin 576332 -> 0 bytes .../_bundled/setuptools-46.1.3-py3-none-any.whl | Bin 0 -> 582683 bytes .../Library/2019-10-15-23-28-11.bpo-38488.hFQNgA.rst | 1 + 6 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/pip-20.1-py2.py3-none-any.whl delete mode 100644 Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl create mode 100644 Lib/ensurepip/_bundled/setuptools-46.1.3-py3-none-any.whl create mode 100644 Misc/NEWS.d/next/Library/2019-10-15-23-28-11.bpo-38488.hFQNgA.rst diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 545fce6..1ec4971 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -12,13 +12,13 @@ from . import _bundled __all__ = ["version", "bootstrap"] -_SETUPTOOLS_VERSION = "41.2.0" +_SETUPTOOLS_VERSION = "46.1.3" -_PIP_VERSION = "19.2.3" +_PIP_VERSION = "20.1" _PROJECTS = [ - ("setuptools", _SETUPTOOLS_VERSION), - ("pip", _PIP_VERSION), + ("setuptools", _SETUPTOOLS_VERSION, 'py3'), + ("pip", _PIP_VERSION, 'py2.py3'), ] @@ -107,8 +107,8 @@ def _bootstrap(*, root=None, upgrade=False, user=False, # Put our bundled wheels into a temporary directory and construct the # additional paths that need added to sys.path additional_paths = [] - for project, version in _PROJECTS: - wheel_name = "{}-{}-py2.py3-none-any.whl".format(project, version) + for project, version, py_tag in _PROJECTS: + wheel_name = "{}-{}-{}-none-any.whl".format(project, version, py_tag) whl = resources.read_binary( _bundled, wheel_name, diff --git a/Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl deleted file mode 100644 index 8118df8..0000000 Binary files a/Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/pip-20.1-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-20.1-py2.py3-none-any.whl new file mode 100644 index 0000000..925a59f Binary files /dev/null and b/Lib/ensurepip/_bundled/pip-20.1-py2.py3-none-any.whl differ diff --git a/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl deleted file mode 100644 index 82df6f6..0000000 Binary files a/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl and /dev/null differ diff --git a/Lib/ensurepip/_bundled/setuptools-46.1.3-py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-46.1.3-py3-none-any.whl new file mode 100644 index 0000000..fc3f6cc Binary files /dev/null and b/Lib/ensurepip/_bundled/setuptools-46.1.3-py3-none-any.whl differ diff --git a/Misc/NEWS.d/next/Library/2019-10-15-23-28-11.bpo-38488.hFQNgA.rst b/Misc/NEWS.d/next/Library/2019-10-15-23-28-11.bpo-38488.hFQNgA.rst new file mode 100644 index 0000000..95cf2f1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-15-23-28-11.bpo-38488.hFQNgA.rst @@ -0,0 +1 @@ +Update ensurepip to install pip 20.1 and setuptools 46.1.3. -- cgit v0.12