8000 [3.9] bpo-43077: Update bundled pip to 21.0.1 and setuptools to 52.0.0 (GH-24386) by pfmoore · Pull Request #24387 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] bpo-43077: Update bundled pip to 21.0.1 and setuptools to 52.0.0 (GH-24386) #24387

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
8000
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions Lib/ensurepip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,12 @@


__all__ = ["version", "bootstrap"]


_SETUPTOOLS_VERSION = "49.2.1"

_PIP_VERSION = "20.2.3"

_PACKAGE_NAMES = ('setuptools', 'pip')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this being set

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR didn't backport cleanly, and I had to manually fix the merge conflict. I didn't notice that this variable isn't used in the older version of the code. It's harmless, but can be fixed. It's not the cause of the test failures, sadly.

_SETUPTOOLS_VERSION = "52.0.0"
_PIP_VERSION = "21.0.1"
_PROJECTS = [
("setuptools", _SETUPTOOLS_VERSION, "py3"),
("pip", _PIP_VERSION, "py2.py3"),
("pip", _PIP_VERSION, "py3"),
]


Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update the bundled pip to 21.0.1 and setuptools to 52.0.0.
0