Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -376,12 +376,12 @@ dependencies:
cuda: "12.*"
use_cuda_wheels: "true"
packages:
- cuda-toolkit[cublas,cufft,curand,cusolver,cusparse]==12.*
- cuda-toolkit[cublas,cufft,curand,cusolver,cusparse,nvjitlink]==12.*
- matrix:
cuda: "13.*"
use_cuda_wheels: "true"
packages:
- cuda-toolkit[cublas,cufft,curand,cusolver,cusparse]==13.*
- cuda-toolkit[cublas,cufft,curand,cusolver,cusparse,nvjitlink]==13.*
# if use_cuda_wheels=false is provided, do not add dependencies on any CUDA wheels
# (e.g. for DLFW and pip devcontainers)
- matrix:
Expand All @@ -391,7 +391,7 @@ dependencies:
# (just as a source of documentation, as this populates pyproject.toml in source control)
- matrix:
packages:
- cuda-toolkit[cublas,cufft,curand,cusolver,cusparse]>=12,<14
- cuda-toolkit[cublas,cufft,curand,cusolver,cusparse,nvjitlink]>=12,<14
docs:
common:
- output_types: [conda, requirements]
Expand Down
2 changes: 1 addition & 1 deletion python/cuml/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"cuda-python>=13.0.1,<14.0",
"cuda-toolkit[cublas,cufft,curand,cusolver,cusparse]>=12,<14",
"cuda-toolkit[cublas,cufft,curand,cusolver,cusparse,nvjitlink]>=12,<14",
"cudf==26.4.*,>=0.0.0a0",
"cupy-cuda13x>=13.6.0",
"joblib>=0.11",
Expand Down
2 changes: 1 addition & 1 deletion python/libcuml/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Environment :: GPU :: NVIDIA CUDA",
]
dependencies = [
"cuda-toolkit[cublas,cufft,curand,cusolver,cusparse]>=12,<14",
"cuda-toolkit[cublas,cufft,curand,cusolver,cusparse,nvjitlink]>=12,<14",
"libraft==26.4.*,>=0.0.0a0",
"rapids-logger==0.2.*,>=0.0.0a0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
Expand Down