Skip to content

Commit

Permalink
Move current release candidate to 2.6.0 (#6049)
Browse files Browse the repository at this point in the history
Move current release candidate and configuration to 2.6.0
  • Loading branch information
atalman authored Dec 12, 2024
1 parent 0c8ad3d commit 34afa4f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tools/scripts/generate_binary_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

"""Generates a matrix to be utilized through github actions
Important. After making changes to this file please run following command:
python -m tools.tests.test_generate_binary_build_matrix --update-reference-files
Will output a condensed version of the matrix if on a pull request that only
includes the latest version of python we support built on four different
architectures:
Expand All @@ -21,17 +24,17 @@

PYTHON_ARCHES_DICT = {
"nightly": ["3.9", "3.10", "3.11", "3.12", "3.13"],
"test": ["3.9", "3.10", "3.11", "3.12"],
"test": ["3.9", "3.10", "3.11", "3.12", "3.13"],
"release": ["3.9", "3.10", "3.11", "3.12"],
}
CUDA_ARCHES_DICT = {
"nightly": ["11.8", "12.4", "12.6"],
"test": ["11.8", "12.1", "12.4"],
"test": ["11.8", "12.4", "12.6"],
"release": ["11.8", "12.1", "12.4"],
}
ROCM_ARCHES_DICT = {
"nightly": ["6.1", "6.2.4"],
"test": ["6.1", "6.2"],
"test": ["6.1", "6.2.4"],
"release": ["6.1", "6.2"],
}

Expand Down Expand Up @@ -66,7 +69,7 @@


CURRENT_NIGHTLY_VERSION = "2.6.0"
CURRENT_CANDIDATE_VERSION = "2.5.1"
CURRENT_CANDIDATE_VERSION = "2.6.0"
CURRENT_STABLE_VERSION = "2.5.1"
CURRENT_VERSION = CURRENT_STABLE_VERSION

Expand Down

0 comments on commit 34afa4f

Please sign in to comment.