Skip to content

Commit

Permalink
Upgrade embed setuptools and pip (#2383)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed Jul 25, 2022
1 parent b0123fb commit b0f8883
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 14 deletions.
2 changes: 2 additions & 0 deletions docs/changelog/2383.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Upgrade embedded pip to ``22.2`` from ``22.1.2`` and setuptools to ``63.2.0`` from ``62.6.0`` -
by :user:`gaborbernat`.
20 changes: 10 additions & 10 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@
BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {
"3.11": {
"pip": "pip-22.1.2-py3-none-any.whl",
"setuptools": "setuptools-62.6.0-py3-none-any.whl",
"pip": "pip-22.2-py3-none-any.whl",
"setuptools": "setuptools-63.2.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.10": {
"pip": "pip-22.1.2-py3-none-any.whl",
"setuptools": "setuptools-62.6.0-py3-none-any.whl",
"pip": "pip-22.2-py3-none-any.whl",
"setuptools": "setuptools-63.2.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.9": {
"pip": "pip-22.1.2-py3-none-any.whl",
"setuptools": "setuptools-62.6.0-py3-none-any.whl",
"pip": "pip-22.2-py3-none-any.whl",
"setuptools": "setuptools-63.2.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.8": {
"pip": "pip-22.1.2-py3-none-any.whl",
"setuptools": "setuptools-62.6.0-py3-none-any.whl",
"pip": "pip-22.2-py3-none-any.whl",
"setuptools": "setuptools-63.2.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.7": {
"pip": "pip-22.1.2-py3-none-any.whl",
"setuptools": "setuptools-62.6.0-py3-none-any.whl",
"pip": "pip-22.2-py3-none-any.whl",
"setuptools": "setuptools-63.2.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.6": {
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
7 changes: 3 additions & 4 deletions tasks/upgrade_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,9 @@ def run():
)
msg = dedent(
f"""
from __future__ import absolute_import, unicode_literals
from pathlib import Path
from virtualenv.seed.wheels.util import Wheel
from virtualenv.util.path import Path
BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {{ {bundle} }}
Expand All @@ -103,12 +102,12 @@ def get_embed_wheel(distribution, for_py_version):
return Wheel.from_path(path)
__all__ = (
__all__ = [
"get_embed_wheel",
"BUNDLE_SUPPORT",
"MAX",
"BUNDLE_FOLDER",
)
]
""",
)
Expand Down

0 comments on commit b0f8883

Please sign in to comment.