Skip to content

Commit

Permalink
Bump embeded wheels (#2252)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat committed Dec 27, 2021
1 parent abc655e commit ba3541c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
31 changes: 18 additions & 13 deletions src/virtualenv/seed/wheels/embed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,43 +5,48 @@

BUNDLE_FOLDER = Path(__file__).absolute().parent
BUNDLE_SUPPORT = {
"3.11": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.10": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.9": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.8": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.7": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.6": {
"pip": "pip-21.3.1-py3-none-any.whl",
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
"setuptools": "setuptools-59.6.0-py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"3.5": {
"pip": "pip-20.3.4-py2.py3-none-any.whl",
"setuptools": "setuptools-50.3.2-py3-none-any.whl",
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
"2.7": {
"pip": "pip-20.3.4-py2.py3-none-any.whl",
"setuptools": "setuptools-44.1.1-py2.py3-none-any.whl",
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
},
}
MAX = "3.10"
MAX = "3.11"


def get_embed_wheel(distribution, for_py_version):
Expand Down
Binary file not shown.
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 @@ -16,7 +16,7 @@
STRICT = "UPGRADE_ADVISORY" not in os.environ

BUNDLED = ["pip", "setuptools", "wheel"]
SUPPORT = list(reversed([(2, 7)] + [(3, i) for i in range(5, 11)]))
SUPPORT = list(reversed([(2, 7)] + [(3, i) for i in range(5, 12)]))
DEST = Path(__file__).resolve().parents[1] / "src" / "virtualenv" / "seed" / "wheels" / "embed"


Expand Down

0 comments on commit ba3541c

Please sign in to comment.