Skip to content

Commit ba3541c

Browse files
authored
Bump embeded wheels (#2252)
1 parent abc655e commit ba3541c

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

src/virtualenv/seed/wheels/embed/__init__.py

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,48 @@
55

66
BUNDLE_FOLDER = Path(__file__).absolute().parent
77
BUNDLE_SUPPORT = {
8+
"3.11": {
9+
"pip": "pip-21.3.1-py3-none-any.whl",
10+
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
11+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
12+
},
813
"3.10": {
914
"pip": "pip-21.3.1-py3-none-any.whl",
10-
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
11-
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
15+
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
16+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
1217
},
1318
"3.9": {
1419
"pip": "pip-21.3.1-py3-none-any.whl",
15-
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
16-
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
20+
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
21+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
1722
},
1823
"3.8": {
1924
"pip": "pip-21.3.1-py3-none-any.whl",
20-
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
21-
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
25+
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
26+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
2227
},
2328
"3.7": {
2429
"pip": "pip-21.3.1-py3-none-any.whl",
25-
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
26-
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
30+
"setuptools": "setuptools-60.1.0-py3-none-any.whl",
31+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
2732
},
2833
"3.6": {
2934
"pip": "pip-21.3.1-py3-none-any.whl",
30-
"setuptools": "setuptools-59.4.0-py3-none-any.whl",
31-
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
35+
"setuptools": "setuptools-59.6.0-py3-none-any.whl",
36+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
3237
},
3338
"3.5": {
3439
"pip": "pip-20.3.4-py2.py3-none-any.whl",
3540
"setuptools": "setuptools-50.3.2-py3-none-any.whl",
36-
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
41+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
3742
},
3843
"2.7": {
3944
"pip": "pip-20.3.4-py2.py3-none-any.whl",
4045
"setuptools": "setuptools-44.1.1-py2.py3-none-any.whl",
41-
"wheel": "wheel-0.37.0-py2.py3-none-any.whl",
46+
"wheel": "wheel-0.37.1-py2.py3-none-any.whl",
4247
},
4348
}
44-
MAX = "3.10"
49+
MAX = "3.11"
4550

4651

4752
def get_embed_wheel(distribution, for_py_version):
Binary file not shown.

tasks/upgrade_wheels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
STRICT = "UPGRADE_ADVISORY" not in os.environ
1717

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

2222

0 commit comments

Comments
 (0)