Skip to content

Commit

Permalink
Bump setuptools (#2306)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed Feb 24, 2022
1 parent 7424a01 commit 6378f72
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Expand Up @@ -46,7 +46,7 @@ jobs:
run: |
for i in 1 2 3; do
echo "try $i" && \
${{ runner.os == 'Linux' && 'sudo apt-get update -y && sudo apt-get install fish csh -y' || true }} && \
${{ runner.os == 'Linux' && 'sudo apt-get update -y && sudo apt-get install snapd fish csh -y' || true }} && \
${{ runner.os == 'Linux' && 'sudo apt-get install curl wget -y' || true }} && \
${{ runner.os == 'Linux' && 'nushell_url=$(curl -s https://api.github.com/repos/nushell/nushell/releases/latest | grep "browser_" | cut -d\" -f4 | grep .tar.gz)' || true }} && \
${{ runner.os == 'Linux' && 'wget -O nushell.tar.gz $nushell_url' || true }} && \
Expand Down
1 change: 1 addition & 0 deletions docs/changelog/2306.bugfix.rst
@@ -0,0 +1 @@
Upgrade embedded setuptools to ``60.9.3`` from ``60.6.0`` - by :user:`gaborbernat`.
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.6.0-py3-none-any.whl",
"setuptools": "setuptools-60.9.3-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.6.0-py3-none-any.whl",
"setuptools": "setuptools-60.9.3-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.6.0-py3-none-any.whl",
"setuptools": "setuptools-60.9.3-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.6.0-py3-none-any.whl",
"setuptools": "setuptools-60.9.3-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.6.0-py3-none-any.whl",
"setuptools": "setuptools-60.9.3-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 6378f72

Please sign in to comment.