Skip to content

Commit

Permalink
Fix adding cuda 12.6 logic
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed Nov 18, 2024
1 parent 661fe3c commit cf8a3d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/scripts/generate_binary_build_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,9 +517,9 @@ def generate_wheels_matrix(
upload_to_base_bucket = "no"
if os == LINUX or os == WINDOWS:
arches += CUDA_ARCHES
# todo: remove once windows cuda 12.6 binaries are available
if channel == NIGHTLY and os != LINUX:
arches.remove("12.6")
# todo: remove once windows cuda 12.6 binaries are available
if channel == NIGHTLY and os == WINDOWS:
arches.remove("12.6")

if with_rocm == ENABLE:
if os == LINUX:
Expand Down

0 comments on commit cf8a3d0

Please sign in to comment.