From 6e42e93a46544a58fd48a8b20c84a8eca66f8bdf Mon Sep 17 00:00:00 2001 From: abetlen Date: Sat, 2 May 2026 16:08:19 -0700 Subject: [PATCH] fix(ci): skip unsupported Windows CUDA versions --- .github/workflows/build-wheels-cuda.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build-wheels-cuda.yaml b/.github/workflows/build-wheels-cuda.yaml index c015c7118..be55bf483 100644 --- a/.github/workflows/build-wheels-cuda.yaml +++ b/.github/workflows/build-wheels-cuda.yaml @@ -26,6 +26,11 @@ jobs: 'pyver' = @("3.9") 'cuda' = @("12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1") 'releasetag' = @("basic") + 'exclude' = @( + @{ 'os' = 'windows-2022'; 'cuda' = '12.1.1' }, + @{ 'os' = 'windows-2022'; 'cuda' = '12.2.2' }, + @{ 'os' = 'windows-2022'; 'cuda' = '12.3.2' } + ) } $matrixOut = ConvertTo-Json $matrix -Compress