Skip to content

Commit 4375c56

Browse files
committed
[DO NOT MERGE] Temporarily force PR builds to test 3.15/3.15t on Windows and Linux
PR builds normally limit to python_versions[0] (3.10); override that to ["3.15", "3.15t"] for Windows, Linux and Linux aarch64 so this PR's CI exercises the new versions. Other OSes and callers that pass an explicit python-versions list are unaffected. Revert this commit before merging. Authored with assistance from Claude Code (AI assistant).
1 parent 83e0eea commit 4375c56

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

tools/scripts/generate_binary_build_matrix.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,15 @@ def generate_wheels_matrix(
494494
arches += [XPU]
495495

496496
if limit_pr_builds:
497-
python_versions = [python_versions[0]]
497+
# TEMPORARY (DO NOT MERGE): revert before merging.
498+
if not explicitly_requested_versions and os in (
499+
WINDOWS,
500+
LINUX,
501+
LINUX_AARCH64,
502+
):
503+
python_versions = ["3.15", "3.15t"]
504+
else:
505+
python_versions = [python_versions[0]]
498506

499507
global WHEEL_CONTAINER_IMAGES
500508

0 commit comments

Comments
 (0)