bpo-33131: Upgrade ensurepip to bundle pip 10.0.1 (GH-6546)

Upgrade ensurepip to bundle pip 10.0.1
(cherry picked from commit 0399cf9b5e)

Co-authored-by: Paul Moore <p.f.moore@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-04-20 13:47:44 -07:00 committed by GitHub
parent 11659d00b9
commit b221107d32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,7 @@ __all__ = ["version", "bootstrap"]
_SETUPTOOLS_VERSION = "39.0.1"
_PIP_VERSION = "9.0.3"
_PIP_VERSION = "10.0.1"
_PROJECTS = [
("setuptools", _SETUPTOOLS_VERSION),
@ -24,8 +24,8 @@ def _run_pip(args, additional_paths=None):
sys.path = additional_paths + sys.path
# Install the bundled software
import pip
return pip.main(args)
import pip._internal
return pip._internal.main(args)
def version():

Binary file not shown.

View File

@ -0,0 +1 @@
Upgrade bundled version of pip to 10.0.1.