Skip to content

Commit 3ef6a65

Browse files
committed
[DO NOT MERGE] Temporarily force PR builds to validate 3.15 instead of 3.10
PR runs set LIMIT_PR_BUILDS, which trims the matrix to the oldest python (3.10), so none of the 3.15 changes in this PR would be exercised by CI. Force 3.15 where it exists in the channel's matrix; release (no 3.15) and windows-arm64 (own pinned list) fall back to the previous behaviour. Revert this commit before merging.
1 parent 74c0c77 commit 3ef6a65

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

tools/scripts/generate_binary_build_matrix.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,16 @@ def generate_wheels_matrix(
474474
arches += [XPU]
475475

476476
if limit_pr_builds:
477-
python_versions = [python_versions[0]]
477+
# ---------------------------------------------------------------
478+
# [DO NOT MERGE] Temporary: PR builds normally validate only the
479+
# OLDEST python (3.10), which would not exercise the 3.15 changes
480+
# in this PR at all. Force 3.15 so CI actually covers them.
481+
# Revert this hunk to `python_versions = [python_versions[0]]`
482+
# before merging.
483+
# ---------------------------------------------------------------
484+
python_versions = (
485+
["3.15"] if "3.15" in python_versions else [python_versions[0]]
486+
)
478487

479488
global WHEEL_CONTAINER_IMAGES
480489

0 commit comments

Comments
 (0)