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 @@ -23,12 +23,12 @@

PYTHON_ARCHES_DICT = {
"nightly": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
"test": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],
"test": ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"],
"release": ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"],
}
CUDA_ARCHES_DICT = {
"nightly": ["12.6", "12.8", "13.0"],
"test": ["12.6", "12.8", "12.9"],
"test": ["12.6", "12.8", "13.0"],
"release": ["12.6", "12.8", "12.9"],
}

Expand All @@ -51,7 +51,7 @@
"release": "12.8",
}

CUDA_AARCH64_ARCHES = ["12.9-aarch64", "13.0-aarch64"]
CUDA_AARCH64_ARCHES = ["12.6-aarch64", "12.8-aarch64", "13.0-aarch64"]

PACKAGE_TYPES = ["wheel", "libtorch"]
CXX11_ABI = "cxx11-abi"
Expand All @@ -77,7 +77,7 @@


CURRENT_NIGHTLY_VERSION = "2.9.0"
CURRENT_CANDIDATE_VERSION = "2.8.0"
CURRENT_CANDIDATE_VERSION = "2.9.0"
CURRENT_STABLE_VERSION = "2.8.0"
CURRENT_VERSION = CURRENT_STABLE_VERSION

Expand Down
Loading