summaryrefslogtreecommitdiffstats
path: root/Lib/ensurepip
diff options
context:
space:
mode:
authorXavier Fernandez <xav.fernandez@gmail.com>2020-05-27 10:49:34 (GMT)
committerGitHub <noreply@github.com>2020-05-27 10:49:34 (GMT)
commitfeb0846c3a28b05b4cfbc6ab34c764957f3eff55 (patch)
tree6b8d64f53494c3c6318a324d58c34f388e4b3212 /Lib/ensurepip
parent7da46b676aed7111de34b57c8b942a7f3bb80327 (diff)
downloadcpython-feb0846c3a28b05b4cfbc6ab34c764957f3eff55.zip
cpython-feb0846c3a28b05b4cfbc6ab34c764957f3eff55.tar.gz
cpython-feb0846c3a28b05b4cfbc6ab34c764957f3eff55.tar.bz2
Upgrade bundled versions of pip & setuptools (#16782)
Diffstat (limited to 'Lib/ensurepip')
-rw-r--r--Lib/ensurepip/__init__.py12
-rw-r--r--Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whlbin1414986 -> 0 bytes
-rw-r--r--Lib/ensurepip/_bundled/pip-20.1-py2.py3-none-any.whlbin0 -> 1489786 bytes
-rw-r--r--Lib/ensurepip/_bundled/setuptools-46.1.3-py3-none-any.whl (renamed from Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl)bin576332 -> 582683 bytes
4 files changed, 6 insertions, 6 deletions
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
--- a/Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl
+++ /dev/null
Binary files 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
--- /dev/null
+++ b/Lib/ensurepip/_bundled/pip-20.1-py2.py3-none-any.whl
Binary files differ
diff --git a/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-46.1.3-py3-none-any.whl
index 82df6f6..fc3f6cc 100644
--- a/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
+++ b/Lib/ensurepip/_bundled/setuptools-46.1.3-py3-none-any.whl
Binary files differ