summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-06-15 20:39:49 (GMT)
committerGitHub <noreply@github.com>2020-06-15 20:39:49 (GMT)
commitbc996c67b7ba73886bb6edfd637ef3f874ddc9d4 (patch)
tree0a7c8d1b0293392e9c17bf0571dd004bab5aea48
parentb498c7f1b3890e43ea2e7d1570f8403707ea4cc6 (diff)
downloadcpython-bc996c67b7ba73886bb6edfd637ef3f874ddc9d4.zip
cpython-bc996c67b7ba73886bb6edfd637ef3f874ddc9d4.tar.gz
cpython-bc996c67b7ba73886bb6edfd637ef3f874ddc9d4.tar.bz2
bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491)
(cherry picked from commit 5f79f46612c351bde78a41c5264c42db21008868) Co-authored-by: Xavier Fernandez <xav.fernandez@gmail.com>
-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.1-py2.py3-none-any.whlbin0 -> 1490666 bytes
-rw-r--r--Lib/ensurepip/_bundled/setuptools-47.1.0-py3-none-any.whl (renamed from Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl)bin576332 -> 583087 bytes
-rw-r--r--Lib/test/test_venv.py2
-rw-r--r--Misc/NEWS.d/next/Library/2020-05-28-16-51-00.bpo-38488.hFQNgA.rst1
6 files changed, 8 insertions, 7 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index d62b118..21320a8 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 = "47.1.0"
-_PIP_VERSION = "19.2.3"
+_PIP_VERSION = "20.1.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.1-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-20.1.1-py2.py3-none-any.whl
new file mode 100644
index 0000000..ea1d0f7
--- /dev/null
+++ b/Lib/ensurepip/_bundled/pip-20.1.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-47.1.0-py3-none-any.whl
index 82df6f6..f87867f 100644
--- a/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
+++ b/Lib/ensurepip/_bundled/setuptools-47.1.0-py3-none-any.whl
Binary files differ
diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py
index 44c6219..ef6d7bd 100644
--- a/Lib/test/test_venv.py
+++ b/Lib/test/test_venv.py
@@ -513,7 +513,7 @@ class EnsurePipTest(BaseTest):
# executing pip with sudo, you may want sudo's -H flag."
# where $HOME is replaced by the HOME environment variable.
err = re.sub("^(WARNING: )?The directory .* or its parent directory "
- "is not owned by the current user .*$", "",
+ "is not owned or is not writable by the current user.*$", "",
err, flags=re.MULTILINE)
self.assertEqual(err.rstrip(), "")
# Being fairly specific regarding the expected behaviour for the
diff --git a/Misc/NEWS.d/next/Library/2020-05-28-16-51-00.bpo-38488.hFQNgA.rst b/Misc/NEWS.d/next/Library/2020-05-28-16-51-00.bpo-38488.hFQNgA.rst
new file mode 100644
index 0000000..c44da9f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-05-28-16-51-00.bpo-38488.hFQNgA.rst
@@ -0,0 +1 @@
+Update ensurepip to install pip 20.1.1 and setuptools 47.1.0.