Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.