Skip to content

Commit

Permalink
Upgrade embedded wheels (#2691)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed Feb 22, 2024
1 parent e72dea8 commit 06075f0
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions docs/changelog/u.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Upgrade embedded wheels:

- pip ``23.3.2`` to `24.0``,
- setuptools ``69.0.3`` to ``69.1.0``.
26 changes: 13 additions & 13 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,38 +7,38 @@
BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {
"3.7": {
"pip": "pip-23.3.2-py3-none-any.whl",
"pip": "pip-24.0-py3-none-any.whl",
"setuptools": "setuptools-68.0.0-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.8": {
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"pip": "pip-24.0-py3-none-any.whl",
"setuptools": "setuptools-69.1.0-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.9": {
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"pip": "pip-24.0-py3-none-any.whl",
"setuptools": "setuptools-69.1.0-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.10": {
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"pip": "pip-24.0-py3-none-any.whl",
"setuptools": "setuptools-69.1.0-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.11": {
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"pip": "pip-24.0-py3-none-any.whl",
"setuptools": "setuptools-69.1.0-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.12": {
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"pip": "pip-24.0-py3-none-any.whl",
"setuptools": "setuptools-69.1.0-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.13": {
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"pip": "pip-24.0-py3-none-any.whl",
"setuptools": "setuptools-69.1.0-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
}
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion tasks/upgrade_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def get_embed_wheel(distribution, for_py_version):
dest_target = DEST / "__init__.py"
dest_target.write_text(msg, encoding="utf-8")

subprocess.run([sys.executable, "-m", "ruff", str(dest_target)], check=False) # noqa: S603
subprocess.run([sys.executable, "-m", "ruff", str(dest_target), "--fix", "--unsafe-fixes"], check=False) # noqa: S603

raise SystemExit(outcome)

Expand Down

0 comments on commit 06075f0

Please sign in to comment.