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
7 changes: 4 additions & 3 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,13 @@ dependencies:
use_cuda_wheels: "true"
packages:
- &cuda_toolkit_any_cu13 cuda-toolkit[cublas,curand,cusolver,cusparse]==13.*
- nvidia-nvjitlink>=13.0,<14
# if no matching matrix selectors passed, list the unsuffixed packages
- &nvjitlink_cu13 nvidia-nvjitlink>=13.3,<14
# if no matching matrix selectors passed, list the CUDA 13 requirement
# (just as a source of documentation, as this populates pyproject.toml in source control)
- matrix:
packages:
- cuda-toolkit[cublas,curand,cusolver,cusparse,nvjitlink]>=12,<14
- *cuda_toolkit_any_cu13
- *nvjitlink_cu13
depends_on_cupy:
common:
- output_types: conda
Expand Down
5 changes: 3 additions & 2 deletions python/libraft/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION.
# SPDX-FileCopyrightText: Copyright (c) 2025-2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

[build-system]
Expand All @@ -20,8 +20,9 @@ authors = [
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"cuda-toolkit[cublas,curand,cusolver,cusparse,nvjitlink]>=12,<14",
"cuda-toolkit[cublas,curand,cusolver,cusparse]==13.*",
"librmm==26.8.*,>=0.0.0a0",
"nvidia-nvjitlink>=13.3,<14",

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I looked at the diff of this PR and thought "huh, wait... shouldn't there be pyproject.toml changes?"

Pushed a change to match what we do in cuVS, where the CUDA 13 dependencies are listed in pyproject.toml as documentation.

https://github.com/NVIDIA/cuvs/blob/8b97b612bec64177ee4e85d1e03654dcb4cb7db7/dependencies.yaml#L433-L438

"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`.
classifiers = [
Expand Down
Loading