Skip to content

Commit 323e177

Browse files
committed
support python 313t
1 parent 404365a commit 323e177

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.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", "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"],
22+
"nightly": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],
23+
"test": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],
24+
"release": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],
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.13", "3.12", "3.10", "3.9"]'
26+
python-versions: '["3.11", "3.13", "3.13t", "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.13", "3.12", "3.10", "3.9"]'
26+
python-versions: '["3.11", "3.13", "3.13t", "3.12", "3.10", "3.9"]'
2727

2828
substitute-runner:
2929
needs: generate-matrix

0 commit comments

Comments
 (0)