Skip to content

Commit

Permalink
Build CUDA version agnostic packages for dask-cudf (#9578)
Browse files Browse the repository at this point in the history
- Add CUDA version to `dask-cudf` build string
- Add `cudatoolkit` as build and runtime dependency for `dask-cudf`

Authors:
  - Jordan Jacobelli (https://github.com/Ethyling)

Approvers:
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #9578
  • Loading branch information
jjacobelli authored Nov 2, 2021
1 parent d674c55 commit 32db39e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conda/recipes/dask-cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ source:

build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
string: cuda_{{ cuda_version }}_py{{ py_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
script_env:
- VERSION_SUFFIX
- PARALLEL_LEVEL
Expand All @@ -28,11 +28,13 @@ requirements:
- cudf {{ version }}
- dask>=2021.09.1
- distributed>=2021.09.1
- cudatoolkit {{ cuda_version }}
run:
- python
- cudf {{ version }}
- dask>=2021.09.1
- distributed>=2021.09.1
- {{ pin_compatible('cudatoolkit', max_pin='x.x') }}

test: # [linux64]
requires: # [linux64]
Expand Down

0 comments on commit 32db39e

Please sign in to comment.