Skip to content

Commit 6ff9fd0

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. Authored with assistance from Claude Code (AI assistant).
1 parent 8df08fc commit 6ff9fd0

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
@@ -488,7 +488,13 @@ def generate_wheels_matrix(
488488
arches += [XPU]
489489

490490
if limit_pr_builds:
491-
python_versions = [python_versions[0]]
491+
# TEMPORARY (DO NOT MERGE): force PR builds to exercise 3.15 / 3.15t on
492+
# Linux so this PR's CI validates the new versions. Revert to
493+
# `python_versions = [python_versions[0]]` before merging.
494+
if os in (LINUX, LINUX_AARCH64):
495+
python_versions = ["3.15", "3.15t"]
496+
else:
497+
python_versions = [python_versions[0]]
492498

493499
global WHEEL_CONTAINER_IMAGES
494500

0 commit comments

Comments
 (0)