Skip to content

Commit 8f8ceb0

Browse files
BUG: add missing libnvfatbin runtime dependency to cuda-bindings (#181)
1 parent 8c94d20 commit 8f8ceb0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

recipe/meta.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set number = 0 %}
1+
{% set number = 1 %}
22
{% set version = "13.2.0" %}
33
{% set sha256 = "6899b7684ccaf3249d521cc092768baeae390780375bb115bcd80350b65b1dff" %}
44

@@ -137,6 +137,8 @@ outputs:
137137
- {{ pin_compatible('cuda-nvrtc', min_pin='x', max_pin='x') }}
138138
- {{ pin_compatible('cuda-nvvm-impl', min_pin='x', max_pin='x') }}
139139
- {{ pin_compatible('libcufile', min_pin='x', max_pin='x') }} # [linux]
140+
# TODO: re-add after finding nvfatbin test that fails without dependency
141+
# - {{ pin_compatible('libnvfatbin', min_pin='x', max_pin='x') }}
140142
- libnvjitlink >=13.0,<14.0a0
141143
run_constrained:
142144
# cuda-cudart is not a hard dependency because cuda-python statically links to
@@ -165,6 +167,7 @@ outputs:
165167
- cythonize -i -3 -Xfreethreading_compatible=True *.pyx
166168
- python -c "import test_cimport; test_cimport.test()"
167169
- python -c "import cuda.bindings; print(cuda.bindings.__version__)"
170+
- python -c "import cuda.bindings.nvfatbin; cuda.bindings.nvfatbin.version()"
168171
imports:
169172
- cuda
170173
- cuda.bindings

0 commit comments

Comments
 (0)