Skip to content

Commit e61bf52

Browse files
KyleFromNVIDIArongou
authored andcommitted
Fix test_python matrix (#1579)
This fixes the matrix for `test_python` to allow for CUDA 11.4. Fixes a testing regression from #1542. Authors: - Kyle Edwards (https://github.com/KyleFromNVIDIA) Approvers: - Bradley Dice (https://github.com/bdice) - Jake Awe (https://github.com/AyodeAwe) URL: #1579
1 parent f91a680 commit e61bf52

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

dependencies.yaml

+5-11
Original file line numberDiff line numberDiff line change
@@ -294,21 +294,15 @@ dependencies:
294294
packages:
295295
- pytest
296296
- pytest-cov
297-
# Needed for numba in tests
298297
specific:
299298
- output_types: conda
300299
matrices:
301-
- matrix:
302-
arch: x86_64
303-
cuda: "11.8"
304-
packages:
305-
- nvcc_linux-64=11.8
306-
- matrix:
307-
arch: aarch64
308-
cuda: "11.8"
309-
packages:
310-
- nvcc_linux-aarch64=11.8
300+
# Needed for numba in tests on CUDA 12+ since Conda CI environments
301+
# do not have a CUDA compiler preinstalled. Wheel tests are run on
302+
# images that supply a CUDA compiler.
311303
- matrix:
312304
cuda: "12.*"
313305
packages:
314306
- cuda-nvcc
307+
- matrix:
308+
packages:

0 commit comments

Comments
 (0)