Skip to content

Commit 68b7e62

Browse files
committed
[DO NOT MERGE] Temporarily force PR builds to test 3.15/3.15t on macOS
PR builds normally limit to python_versions[0] (3.10); override that to ["3.15", "3.15t"] for macOS arm64 so this PR's CI actually 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 3c8b627 commit 68b7e62

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

tools/scripts/generate_binary_build_matrix.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,11 @@ 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 == MACOS_ARM64:
499+
python_versions = ["3.15", "3.15t"]
500+
else:
501+
python_versions = [python_versions[0]]
498502

499503
global WHEEL_CONTAINER_IMAGES
500504

0 commit comments

Comments
 (0)