Skip to content

Commit

Permalink
fix setuptools zipimport breakage by downgrading setuptools (#2296)
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Feb 5, 2022
1 parent 92166a9 commit 5ee5ad9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/changelog/2294.bugfix.rst
@@ -1 +1 @@
Upgrade embedded pip to ``22.0.3`` and setuptools to ``60.7.1`` - by :user:`gaborbernat`.
Upgrade embedded pip to ``22.0.3`` and setuptools to ``60.6.0`` - by :user:`gaborbernat` and :user:`asottile`.
10 changes: 5 additions & 5 deletions src/virtualenv/seed/wheels/embed/__init__.py
Expand Up @@ -7,27 +7,27 @@
BUNDLE_SUPPORT = {
"3.11": {
"pip": "pip-22.0.3-py3-none-any.whl",
"setuptools": "setuptools-60.7.1-py3-none-any.whl",
"setuptools": "setuptools-60.6.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.10": {
"pip": "pip-22.0.3-py3-none-any.whl",
"setuptools": "setuptools-60.7.1-py3-none-any.whl",
"setuptools": "setuptools-60.6.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.9": {
"pip": "pip-22.0.3-py3-none-any.whl",
"setuptools": "setuptools-60.7.1-py3-none-any.whl",
"setuptools": "setuptools-60.6.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.8": {
"pip": "pip-22.0.3-py3-none-any.whl",
"setuptools": "setuptools-60.7.1-py3-none-any.whl",
"setuptools": "setuptools-60.6.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.7": {
"pip": "pip-22.0.3-py3-none-any.whl",
"setuptools": "setuptools-60.7.1-py3-none-any.whl",
"setuptools": "setuptools-60.6.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.6": {
Expand Down
Binary file not shown.

0 comments on commit 5ee5ad9

Please sign in to comment.