Skip to content

Commit

Permalink
Add cuda-python dependency (#4829)
Browse files Browse the repository at this point in the history
cuGraph depends on `cuda-python` but does not currently list that dependency. This PR adds it.

Authors:
  - Bradley Dice (https://github.com/bdice)
  - Ralph Liu (https://github.com/nv-rliu)

Approvers:
  - James Lamb (https://github.com/jameslamb)

URL: #4829
  • Loading branch information
bdice authored Dec 18, 2024
1 parent 9b28c88 commit 6783aec
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies:
- certifi
- cmake>=3.26.4,!=3.30.0
- cuda-nvtx
- cuda-python>=11.8.5,<12.0a0
- cuda-version=11.8
- cudatoolkit
- cudf==25.2.*,>=0.0.0a0
Expand Down
1 change: 1 addition & 0 deletions conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ dependencies:
- cuda-nvcc
- cuda-nvtx-dev
- cuda-profiler-api
- cuda-python>=12.6.2,<13.0a0
- cuda-version=12.5
- cudf==25.2.*,>=0.0.0a0
- cupy>=12.0.0
Expand Down
9 changes: 9 additions & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,15 @@ dependencies:
# dataset APIs require [http] extras for use with cudf.
- fsspec[http]>=0.6.0
specific:
- output_types: [conda, requirements, pyproject]
matrices:
- matrix:
cuda: "12.*"
packages:
- cuda-python>=12.6.2,<13.0a0
- matrix: # All CUDA 11 versions
packages:
- cuda-python>=11.8.5,<12.0a0
- output_types: pyproject
matrices:
- matrix:
Expand Down
1 change: 1 addition & 0 deletions python/cugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ authors = [
license = { text = "Apache 2.0" }
requires-python = ">=3.10"
dependencies = [
"cuda-python>=11.8.5,<12.0a0",
"cudf==25.2.*,>=0.0.0a0",
"cupy-cuda11x>=12.0.0",
"dask-cuda==25.2.*,>=0.0.0a0",
Expand Down

0 comments on commit 6783aec

Please sign in to comment.