Skip to content

Commit 0399cf9

Browse files
authored
bpo-33131: Upgrade ensurepip to bundle pip 10.0.1 (GH-6546)
Upgrade ensurepip to bundle pip 10.0.1
1 parent 53f67d4 commit 0399cf9

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Lib/ensurepip/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
_SETUPTOOLS_VERSION = "39.0.1"
1212

13-
_PIP_VERSION = "9.0.3"
13+
_PIP_VERSION = "10.0.1"
1414

1515
_PROJECTS = [
1616
("setuptools", _SETUPTOOLS_VERSION),
@@ -24,8 +24,8 @@ def _run_pip(args, additional_paths=None):
2424
sys.path = additional_paths + sys.path
2525

2626
# Install the bundled software
27-
import pip
28-
return pip.main(args)
27+
import pip._internal
28+
return pip._internal.main(args)
2929

3030

3131
def version():
Binary file not shown.
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Upgrade bundled version of pip to 10.0.1.

0 commit comments

Comments
 (0)