Skip to content

Commit 25207be

Browse files
authored
Merge pull request #2989 from gaborbernat/bump-pip
1 parent d593841 commit 25207be

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

docs/changelog/2989.bugfix.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Upgrade embedded wheels:
2+
3+
* pip to ``25.3`` from ``25.2``

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

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,31 @@
1212
"wheel": "wheel-0.45.1-py3-none-any.whl",
1313
},
1414
"3.9": {
15-
"pip": "pip-25.2-py3-none-any.whl",
15+
"pip": "pip-25.3-py3-none-any.whl",
1616
"setuptools": "setuptools-80.9.0-py3-none-any.whl",
1717
},
1818
"3.10": {
19-
"pip": "pip-25.2-py3-none-any.whl",
19+
"pip": "pip-25.3-py3-none-any.whl",
2020
"setuptools": "setuptools-80.9.0-py3-none-any.whl",
2121
},
2222
"3.11": {
23-
"pip": "pip-25.2-py3-none-any.whl",
23+
"pip": "pip-25.3-py3-none-any.whl",
2424
"setuptools": "setuptools-80.9.0-py3-none-any.whl",
2525
},
2626
"3.12": {
27-
"pip": "pip-25.2-py3-none-any.whl",
27+
"pip": "pip-25.3-py3-none-any.whl",
2828
"setuptools": "setuptools-80.9.0-py3-none-any.whl",
2929
},
3030
"3.13": {
31-
"pip": "pip-25.2-py3-none-any.whl",
31+
"pip": "pip-25.3-py3-none-any.whl",
3232
"setuptools": "setuptools-80.9.0-py3-none-any.whl",
3333
},
3434
"3.14": {
35-
"pip": "pip-25.2-py3-none-any.whl",
35+
"pip": "pip-25.3-py3-none-any.whl",
36+
"setuptools": "setuptools-80.9.0-py3-none-any.whl",
37+
},
38+
"3.15": {
39+
"pip": "pip-25.3-py3-none-any.whl",
3640
"setuptools": "setuptools-80.9.0-py3-none-any.whl",
3741
},
3842
}

tasks/upgrade_wheels.py

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

1717
BUNDLED = ["pip", "setuptools", "wheel"]
18-
SUPPORT = [(3, i) for i in range(8, 15)]
18+
SUPPORT = [(3, i) for i in range(8, 16)]
1919
DEST = Path(__file__).resolve().parents[1] / "src" / "virtualenv" / "seed" / "wheels" / "embed"
2020

2121

tests/unit/create/test_creator.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,6 @@ def test_create_distutils_cfg(creator, tmp_path, monkeypatch):
440440
"--disable-pip-version-check",
441441
"install",
442442
str(dest),
443-
"--no-use-pep517",
444443
"-vv",
445444
]
446445
subprocess.check_call(install_demo_cmd)

0 commit comments

Comments
 (0)