Upgrade embed setuptools and pip (#2383)
This commit is contained in:
parent
b0123fb41b
commit
b0f8883421
7 changed files with 15 additions and 14 deletions
2
docs/changelog/2383.feature.rst
Normal file
2
docs/changelog/2383.feature.rst
Normal file
|
|
@ -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`.
|
||||
|
|
@ -5,28 +5,28 @@ from virtualenv.seed.wheels.util import Wheel
|
|||
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": {
|
||||
|
|
|
|||
Binary file not shown.
BIN
src/virtualenv/seed/wheels/embed/pip-22.2-py3-none-any.whl
Normal file
BIN
src/virtualenv/seed/wheels/embed/pip-22.2-py3-none-any.whl
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -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} }}
|
||||
|
|
@ -103,12 +102,12 @@ def run():
|
|||
return Wheel.from_path(path)
|
||||
|
||||
|
||||
__all__ = (
|
||||
__all__ = [
|
||||
"get_embed_wheel",
|
||||
"BUNDLE_SUPPORT",
|
||||
"MAX",
|
||||
"BUNDLE_FOLDER",
|
||||
)
|
||||
]
|
||||
|
||||
""",
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue