Commit 4caba7a9 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub

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


Upgrade ensurepip to bundle pip 10.0.1
(cherry picked from commit 0399cf9b)
Co-authored-by: default avatarPaul Moore <p.f.moore@gmail.com>
parent 7a45eb9e
......@@ -14,7 +14,7 @@ __all__ = ["version", "bootstrap"]
_SETUPTOOLS_VERSION = "39.0.1"
_PIP_VERSION = "9.0.3"
_PIP_VERSION = "10.0.1"
_PROJECTS = [
("setuptools", _SETUPTOOLS_VERSION),
......@@ -28,8 +28,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():
......
This diff was suppressed by a .gitattributes entry.
This diff was suppressed by a .gitattributes entry.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment