Skip to content

Commit ba764bf

Browse files
committed
reenable py313
1 parent 557bec3 commit ba764bf

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/scripts/filter-matrix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import json
55
import sys
66

7-
disabled_python_versions = "3.13"
7+
disabled_python_versions = ["3.13"]
88

99

1010
def main(args: list[str]) -> None:

.github/scripts/generate_binary_build_matrix.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
from typing import Any, Callable, Dict, List, Optional, Tuple
2020

2121
PYTHON_ARCHES_DICT = {
22-
"nightly": ["3.9", "3.10", "3.11", "3.12"],
23-
"test": ["3.9", "3.10", "3.11", "3.12"],
24-
"release": ["3.9", "3.10", "3.11", "3.12"],
22+
"nightly": ["3.9", "3.10", "3.11", "3.12", "3.13"],
23+
"test": ["3.9", "3.10", "3.11", "3.12", "3.13"],
24+
"release": ["3.9", "3.10", "3.11", "3.12", "3.13"],
2525
}
2626
CUDA_ARCHES_DICT = {
2727
"nightly": ["11.8", "12.6", "12.8"],

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
test-infra-ref: main
2424
with-rocm: false
2525
with-cpu: false
26-
python-versions: '["3.11", "3.12", "3.10", "3.9"]'
26+
python-versions: '["3.11", "3.13", "3.12", "3.10", "3.9"]'
2727

2828
filter-matrix:
2929
needs: [generate-matrix]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
test-infra-ref: main
2424
with-rocm: false
2525
with-cpu: false
26-
python-versions: '["3.11", "3.12", "3.10", "3.9"]'
26+
python-versions: '["3.11", "3.13", "3.12", "3.10", "3.9"]'
2727

2828
substitute-runner:
2929
needs: generate-matrix

0 commit comments

Comments
 (0)