Skip to content

Commit 89fef4b

Browse files
committed
fix py313
1 parent c9d8721 commit 89fef4b

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.github/scripts/generate_binary_build_matrix.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -422,11 +422,6 @@ def generate_wheels_matrix(
422422
# Define default python version
423423
python_versions = list(PYTHON_ARCHES)
424424

425-
# If the list of python versions is set explicitly by the caller, stick with it instead
426-
# of trying to add more versions behind the scene
427-
if channel == NIGHTLY and (os in (LINUX, MACOS_ARM64, LINUX_AARCH64)):
428-
python_versions += ["3.13"]
429-
430425
if os == LINUX:
431426
# NOTE: We only build manywheel packages for linux
432427
package_type = "manywheel"
@@ -456,7 +451,7 @@ def generate_wheels_matrix(
456451
arches += [XPU]
457452

458453
if limit_pr_builds:
459-
python_versions = [python_versions[0]]
454+
python_versions = ["3.11"]
460455

461456
global WHEEL_CONTAINER_IMAGES
462457

.github/workflows/build-test-linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
test-infra-ref: main
2424
with-rocm: false
2525
with-cpu: false
26-
python-versions: '["3.13", "3.13t"]'
2726

2827
filter-matrix:
2928
needs: [generate-matrix]

0 commit comments

Comments
 (0)