Skip to content

Commit

Permalink
Upgrade pip and setuptools
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
  • Loading branch information
gaborbernat committed Oct 23, 2023
1 parent e4eac75 commit 11eb02b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
5 changes: 5 additions & 0 deletions docs/changelog/2656.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Upgrade embedded wheels:

* setuptools to ``68.2.2`` from ``68.2.0``
* pip to ``23.3.1`` from ``23.2.1``

Empty file added docs/changelog/u.bugfix.rst
Empty file.
24 changes: 11 additions & 13 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,37 @@
from __future__ import annotations

from pathlib import Path

from virtualenv.seed.wheels.util import Wheel

BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {
"3.7": {
"pip": "pip-23.2.1-py3-none-any.whl",
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-68.0.0-py3-none-any.whl",
"wheel": "wheel-0.41.2-py3-none-any.whl",
},
"3.8": {
"pip": "pip-23.2.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.0-py3-none-any.whl",
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.2-py3-none-any.whl",
"wheel": "wheel-0.41.2-py3-none-any.whl",
},
"3.9": {
"pip": "pip-23.2.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.0-py3-none-any.whl",
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.2-py3-none-any.whl",
"wheel": "wheel-0.41.2-py3-none-any.whl",
},
"3.10": {
"pip": "pip-23.2.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.0-py3-none-any.whl",
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.2-py3-none-any.whl",
"wheel": "wheel-0.41.2-py3-none-any.whl",
},
"3.11": {
"pip": "pip-23.2.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.0-py3-none-any.whl",
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.2-py3-none-any.whl",
"wheel": "wheel-0.41.2-py3-none-any.whl",
},
"3.12": {
"pip": "pip-23.2.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.0-py3-none-any.whl",
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-68.2.2-py3-none-any.whl",
"wheel": "wheel-0.41.2-py3-none-any.whl",
},
}
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 11eb02b

Please sign in to comment.