aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-10-07 18:54:05 -0700
committerGitHub <noreply@github.com>2019-10-07 18:54:05 -0700
commite7e58fe03175adc660c192e724b91ae7ccba9cb6 (patch)
tree6919f447f133a4219d26f6b2dc28b451210e2db2
parentbpo-38106: Fix race in pthread PyThread_release_lock() (GH-16047) (diff)
downloadcpython-e7e58fe03175adc660c192e724b91ae7ccba9cb6.tar.gz
cpython-e7e58fe03175adc660c192e724b91ae7ccba9cb6.tar.bz2
cpython-e7e58fe03175adc660c192e724b91ae7ccba9cb6.zip
[2.7] bpo-37664: Update ensurepip bundled wheels, again (GH-16633)
(cherry picked from commit 10c452b894d95fed06056fe11e8fe8e1a2a60040) Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
-rw-r--r--Lib/ensurepip/__init__.py4
-rw-r--r--Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl (renamed from Lib/ensurepip/_bundled/pip-19.0.3-py2.py3-none-any.whl)bin1353599 -> 1414986 bytes
-rw-r--r--Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl (renamed from Lib/ensurepip/_bundled/setuptools-40.8.0-py2.py3-none-any.whl)bin575457 -> 576332 bytes
-rw-r--r--Misc/NEWS.d/next/Library/2019-07-24-18-27-44.bpo-37664.o-GYZC.rst1
4 files changed, 3 insertions, 2 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
index cbadfaa41a..0955141184 100644
--- a/Lib/ensurepip/__init__.py
+++ b/Lib/ensurepip/__init__.py
@@ -12,9 +12,9 @@ import tempfile
__all__ = ["version", "bootstrap"]
-_SETUPTOOLS_VERSION = "40.8.0"
+_SETUPTOOLS_VERSION = "41.2.0"
-_PIP_VERSION = "19.0.3"
+_PIP_VERSION = "19.2.3"
_PROJECTS = [
("setuptools", _SETUPTOOLS_VERSION),
diff --git a/Lib/ensurepip/_bundled/pip-19.0.3-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl
index 24f247caa0..8118df8ac1 100644
--- a/Lib/ensurepip/_bundled/pip-19.0.3-py2.py3-none-any.whl
+++ b/Lib/ensurepip/_bundled/pip-19.2.3-py2.py3-none-any.whl
Binary files differ
diff --git a/Lib/ensurepip/_bundled/setuptools-40.8.0-py2.py3-none-any.whl b/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
index fdc66e9330..82df6f63f4 100644
--- a/Lib/ensurepip/_bundled/setuptools-40.8.0-py2.py3-none-any.whl
+++ b/Lib/ensurepip/_bundled/setuptools-41.2.0-py2.py3-none-any.whl
Binary files differ
diff --git a/Misc/NEWS.d/next/Library/2019-07-24-18-27-44.bpo-37664.o-GYZC.rst b/Misc/NEWS.d/next/Library/2019-07-24-18-27-44.bpo-37664.o-GYZC.rst
new file mode 100644
index 0000000000..f12590540e
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-07-24-18-27-44.bpo-37664.o-GYZC.rst
@@ -0,0 +1 @@
+Update wheels bundled with ensurepip (pip 19.2.3 and setuptools 41.2.0)