Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tools/scripts/generate_binary_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
PYTHON_ARCHES_DICT = {
"nightly": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
"test": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
"release": ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"],
"release": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
}
CUDA_ARCHES_DICT = {
"nightly": ["12.6", "12.8", "13.0"],
Expand All @@ -34,7 +34,7 @@

ROCM_ARCHES_DICT = {
"nightly": ["7.0", "7.1"],
"test": ["6.3", "6.4"],
"test": ["7.0", "7.1"],
"release": ["6.3", "6.4"],
}

Expand Down Expand Up @@ -76,8 +76,8 @@
XPU = "xpu"


CURRENT_NIGHTLY_VERSION = "2.10.0"
CURRENT_CANDIDATE_VERSION = "2.9.1"
CURRENT_NIGHTLY_VERSION = "2.11.0"
CURRENT_CANDIDATE_VERSION = "2.10.0"
CURRENT_STABLE_VERSION = "2.9.1"
CURRENT_VERSION = CURRENT_STABLE_VERSION

Expand Down