diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-24 19:28:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-24 19:28:12 (GMT) |
commit | 0cdb21d6eb3428abe50a55f9291ca0e9728654d9 (patch) | |
tree | 52f0d6cfe6ff052e4669da67589c71ffe4d7a950 /Lib/ensurepip/__init__.py | |
parent | bb697899aa65d90488af1950ac7cceeb3877d409 (diff) | |
download | cpython-0cdb21d6eb3428abe50a55f9291ca0e9728654d9.zip cpython-0cdb21d6eb3428abe50a55f9291ca0e9728654d9.tar.gz cpython-0cdb21d6eb3428abe50a55f9291ca0e9728654d9.tar.bz2 |
bpo-37664: Update bundled pip to 19.2.1 and setuptools to 41.0.1 (GH-14934)
(cherry picked from commit 5380def8269b24a8a3bc46396373a1dc91b1dd1a)
Co-authored-by: Pradyun Gedam <pradyunsg@gmail.com>
Diffstat (limited to 'Lib/ensurepip/__init__.py')
-rw-r--r-- | Lib/ensurepip/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py index 6f2569d..63de20e 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -8,9 +8,9 @@ import tempfile __all__ = ["version", "bootstrap"] -_SETUPTOOLS_VERSION = "40.8.0" +_SETUPTOOLS_VERSION = "41.0.1" -_PIP_VERSION = "19.0.3" +_PIP_VERSION = "19.2.1" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION), |