diff options
author | Donald Stufft <donald@stufft.io> | 2018-11-19 12:41:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 12:41:52 (GMT) |
commit | 8b9c33ea9ce902f902c9d9900121010801950547 (patch) | |
tree | ea67f08c1b76d2ffff5c6778c8c1fcb1ab58e443 /Lib/ensurepip/__init__.py | |
parent | 062a57bf4b768ef726975bcc1d34398387520147 (diff) | |
download | cpython-8b9c33ea9ce902f902c9d9900121010801950547.zip cpython-8b9c33ea9ce902f902c9d9900121010801950547.tar.gz cpython-8b9c33ea9ce902f902c9d9900121010801950547.tar.bz2 |
Upgrade pip to 18.1 and setuptools to 40.6.2 (#10598)
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 4748ba4..09c572d 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py @@ -8,9 +8,9 @@ import tempfile __all__ = ["version", "bootstrap"] -_SETUPTOOLS_VERSION = "39.0.1" +_SETUPTOOLS_VERSION = "40.6.2" -_PIP_VERSION = "10.0.1" +_PIP_VERSION = "18.1" _PROJECTS = [ ("setuptools", _SETUPTOOLS_VERSION), |