Skip to content

Commit

Permalink
bpo-33131: Upgrade ensurepip to bundle pip 10.0.1 (pythonGH-6546)
Browse files Browse the repository at this point in the history
Upgrade ensurepip to bundle pip 10.0.1
  • Loading branch information
pfmoore authored Apr 20, 2018
1 parent 53f67d4 commit 0399cf9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lib/ensurepip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

_SETUPTOOLS_VERSION = "39.0.1"

_PIP_VERSION = "9.0.3"
_PIP_VERSION = "10.0.1"

_PROJECTS = [
("setuptools", _SETUPTOOLS_VERSION),
Expand All @@ -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():
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade bundled version of pip to 10.0.1.

0 comments on commit 0399cf9

Please sign in to comment.