Skip to content

Commit 7c6fb8b

Browse files
committed
Revert "[TEMP - do not merge] Force PR validation to test Python 3.15 (uv path)"
This reverts commit 92c9223.
1 parent 7f8588b commit 7c6fb8b

3 files changed

Lines changed: 3 additions & 13 deletions

File tree

.github/workflows/validate-linux-binaries.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,7 @@ jobs:
106106
package-type: wheel,libtorch
107107
os: linux
108108
channel: ${{ inputs.channel }}
109-
# TEMPORARY (revert before merge): use the PR branch so the matrix is
110-
# generated by this PR's generate_binary_build_matrix.py (3.15/3.15t).
111-
test-infra-ref: add-py315-uv-validation-release-2.13
109+
test-infra-ref: release/2.13
112110
use-only-dl-pytorch-org: ${{ inputs.use-only-dl-pytorch-org }}
113111
with-xpu: enable
114112
# Validate torch-only preview python versions (3.15/3.15t) on the test channel.
@@ -125,9 +123,6 @@ jobs:
125123
runner: ${{ matrix.validation_runner }}
126124
repository: "pytorch/pytorch"
127125
ref: release/2.13
128-
# TEMPORARY (revert before merge): use the PR branch so validate_binaries.sh
129-
# (with the uv-provisioned Python 3.15.0b1 path) comes from this PR.
130-
test-infra-ref: add-py315-uv-validation-release-2.13
131126
job-name: ${{ matrix.build_name }}
132127
docker-image: ${{ ((matrix.gpu_arch_type == 'xpu' || matrix.gpu_arch_type == 'rocm') && matrix.container_image) || 'pytorch/almalinux-builder:cpu-main' }}
133128
binary-matrix: ${{ toJSON(matrix) }}

.github/workflows/validate-nightly-binaries.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,4 @@ jobs:
3232
uses: ./.github/workflows/validate-binaries.yml
3333
with:
3434
channel: nightly
35-
# TEMPORARY (revert before merge): scope to linux and torch-only to test
36-
# the Python 3.15 validation path (no torchvision cp315 wheels yet).
37-
os: linux
38-
torchonly: true
35+
os: all

tools/scripts/generate_binary_build_matrix.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222

2323

2424
PYTHON_ARCHES_DICT = {
25-
# TEMPORARY (revert before merge): restrict nightly to 3.15/3.15t so this
26-
# PR's nightly validation exercises the uv-provisioned 3.15.0b1 path.
27-
"nightly": ["3.15", "3.15t"],
25+
"nightly": ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"],
2826
"test": ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"],
2927
"release": ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"],
3028
}

0 commit comments

Comments
 (0)