Skip to content

Commit

Permalink
Upgrade embeded wheels
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 Jan 12, 2024
1 parent 9fb3aa3 commit 72cfd76
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
4 changes: 4 additions & 0 deletions docs/changelog/2681.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Upgrade embedded wheels:

* setuptools to ``69.0.3`` from ``69.0.2``
* pip to ``23.3.2`` from ``23.3.1``
2 changes: 1 addition & 1 deletion src/virtualenv/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
ROOT = os.path.realpath(os.path.join(os.path.abspath(__file__), os.path.pardir, os.path.pardir))
IS_ZIPAPP = os.path.isfile(ROOT)

_CAN_SYMLINK = _FS_CASE_SENSITIVE = _CFG_DIR = _DATA_DIR = None



def fs_is_case_sensitive():
Expand Down
28 changes: 13 additions & 15 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
@@ -1,44 +1,42 @@
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.3.1-py3-none-any.whl",
"pip": "pip-23.3.2-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.1-py3-none-any.whl",
"setuptools": "setuptools-69.0.2-py3-none-any.whl",
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.9": {
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-69.0.2-py3-none-any.whl",
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.10": {
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-69.0.2-py3-none-any.whl",
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.11": {
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-69.0.2-py3-none-any.whl",
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.12": {
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-69.0.2-py3-none-any.whl",
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
"3.13": {
"pip": "pip-23.3.1-py3-none-any.whl",
"setuptools": "setuptools-69.0.2-py3-none-any.whl",
"pip": "pip-23.3.2-py3-none-any.whl",
"setuptools": "setuptools-69.0.3-py3-none-any.whl",
"wheel": "wheel-0.42.0-py3-none-any.whl",
},
}
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 72cfd76

Please sign in to comment.