Skip to content
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

upgrade embedded wheels #2289

Merged
merged 1 commit into from
Jan 27, 2022
Merged
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
upgrade embedded wheels
this fixes an annoying distutils bug in setuptools plaguing reorder-python-imports
asottile committed Jan 26, 2022
commit 521b0e868918a9cf4a86351b1bade5910ac34a9b
1 change: 1 addition & 0 deletions docs/changelog/2289.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ugrade embedded setuptools to ``60.5.0`` from ``60.2.0`` - by :user:`asottile`.
10 changes: 5 additions & 5 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
@@ -7,27 +7,27 @@
BUNDLE_SUPPORT = {
"3.11": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-60.2.0-py3-none-any.whl",
"setuptools": "setuptools-60.5.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.10": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-60.2.0-py3-none-any.whl",
"setuptools": "setuptools-60.5.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.9": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-60.2.0-py3-none-any.whl",
"setuptools": "setuptools-60.5.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.8": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-60.2.0-py3-none-any.whl",
"setuptools": "setuptools-60.5.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.7": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-60.2.0-py3-none-any.whl",
"setuptools": "setuptools-60.5.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.6": {
Binary file not shown.