Skip to content

Commit fce1c81

Browse files
committed
[DO NOT MERGE] Temporarily force PR builds to test 3.15/3.15t on Linux
PR builds normally limit to python_versions[0] (3.10); override that to ["3.15", "3.15t"] for linux and linux-aarch64 so this PR's CI actually exercises the new versions (macOS/Windows keep 3.10 to avoid an empty matrix). Revert this commit before merging.
1 parent 38f8ca4 commit fce1c81

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

tools/scripts/generate_binary_build_matrix.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,13 @@ def generate_wheels_matrix(
456456
arches += [XPU]
457457

458458
if limit_pr_builds:
459-
python_versions = [python_versions[0]]
459+
# TEMPORARY (DO NOT MERGE): force PR builds to exercise 3.15 / 3.15t on
460+
# Linux so this PR's CI validates the new versions. Revert to
461+
# `python_versions = [python_versions[0]]` before merging.
462+
if os in (LINUX, LINUX_AARCH64):
463+
python_versions = ["3.15", "3.15t"]
464+
else:
465+
python_versions = [python_versions[0]]
460466

461467
global WHEEL_CONTAINER_IMAGES
462468

0 commit comments

Comments
 (0)