Upgrade bundled versions of pip & setuptools (#16782)
This commit is contained in:
parent
7da46b676a
commit
feb0846c3a
|
@ -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,
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
Update ensurepip to install pip 20.1 and setuptools 46.1.3.
|
Loading…
Reference in New Issue