Skip to content

Commit d1afccd

Browse files
authored
Add support for --pip-version 26.0.1 (#3098)
1 parent 4860472 commit d1afccd

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ jobs:
9595
# Unit tests:
9696
# -----------
9797
- test-cmd: test-py27-pip20.3.4--patched
98-
- test-cmd: test-py314-pip26.0
99-
- test-cmd: test-py315-pip26.0
98+
- test-cmd: test-py314-pip26.0.1
99+
- test-cmd: test-py315-pip26.0.1
100100
- test-cmd: test-pypy311-pip24.3.1
101101

102102
# Integration tests, split most into two shards:
@@ -110,14 +110,14 @@ jobs:
110110
- test-cmd: test-py38-pip22.3.1-integration
111111
pex-test-pos-args: --shard 2/2
112112

113-
- test-cmd: test-py314-pip26.0-integration
113+
- test-cmd: test-py314-pip26.0.1-integration
114114
pex-test-pos-args: --shard 1/2
115-
- test-cmd: test-py314-pip26.0-integration
115+
- test-cmd: test-py314-pip26.0.1-integration
116116
pex-test-pos-args: --shard 2/2
117117

118-
- test-cmd: test-py315-pip26.0-integration
118+
- test-cmd: test-py315-pip26.0.1-integration
119119
pex-test-pos-args: --shard 1/2
120-
- test-cmd: test-py315-pip26.0-integration
120+
- test-cmd: test-py315-pip26.0.1-integration
121121
pex-test-pos-args: --shard 2/2
122122

123123
# PyPy is slow enough to require extra sharding.
@@ -175,12 +175,12 @@ jobs:
175175
matrix:
176176
include:
177177
- python-version: "3.14"
178-
test-cmd: test-py314-pip26.0
178+
test-cmd: test-py314-pip26.0.1
179179
- python-version: "3.14"
180-
test-cmd: test-py314-pip26.0-integration
180+
test-cmd: test-py314-pip26.0.1-integration
181181
pex-test-pos-args: --shard 1/2
182182
- python-version: "3.14"
183-
test-cmd: test-py314-pip26.0-integration
183+
test-cmd: test-py314-pip26.0.1-integration
184184
pex-test-pos-args: --shard 2/2
185185
steps:
186186
- name: Checkout Pex
@@ -267,19 +267,19 @@ jobs:
267267
- python-version: "3.11"
268268
test-cmd: typecheck package docs
269269
- python-version: "3.14"
270-
test-cmd: test-py314-pip26.0
270+
test-cmd: test-py314-pip26.0.1
271271
artifact-name: unit
272272
pex-test-pos-args: --junit-report ../dist/test-results/unit.xml
273273
- python-version: "3.14"
274-
test-cmd: test-py314-pip26.0-integration
274+
test-cmd: test-py314-pip26.0.1-integration
275275
artifact-name: integration-1
276276
pex-test-pos-args: --shard 1/3 --junit-report ../dist/test-results/integration-1.xml
277277
- python-version: "3.14"
278-
test-cmd: test-py314-pip26.0-integration
278+
test-cmd: test-py314-pip26.0.1-integration
279279
artifact-name: integration-2
280280
pex-test-pos-args: --shard 2/3 --junit-report ../dist/test-results/integration-2.xml
281281
- python-version: "3.14"
282-
test-cmd: test-py314-pip26.0-integration
282+
test-cmd: test-py314-pip26.0.1-integration
283283
artifact-name: integration-3
284284
pex-test-pos-args: --shard 3/3 --junit-report ../dist/test-results/integration-3.xml
285285
steps:

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## 2.88.0
4+
5+
This release adds support for `--pip-version 26.0.1`.
6+
7+
* Add support for `--pip-version 26.0.1`. (#3098)
8+
39
## 2.87.0
410

511
This release adds support for `--pip-version 26.0`.

pex/pip/version.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,13 @@ def latest_compatible(cls, target=None):
473473
requires_python=">=3.9,<3.16",
474474
)
475475

476+
v26_0_1 = PipVersionValue(
477+
version="26.0.1",
478+
setuptools_version="80.10.2",
479+
wheel_version="0.46.3",
480+
requires_python=">=3.9,<3.16",
481+
)
482+
476483
ADHOC = Adhoc()
477484

478485
VENDORED = v20_3_4_patched

pex/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright 2015 Pex project contributors.
22
# Licensed under the Apache License, Version 2.0 (see LICENSE).
33

4-
__version__ = "2.87.0"
4+
__version__ = "2.88.0"

0 commit comments

Comments
 (0)