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
14 changes: 14 additions & 0 deletions cuda_core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,20 @@ test-cu13 = [ {include-group = "ml-dtypes" }, {include-group = "test" }, "cupy-c
test-cu12-ft = [ {include-group = "ml-dtypes" }, {include-group = "test" }, "cuda-toolkit[cudart]==12.*"]
test-cu13-ft = [ {include-group = "ml-dtypes" }, {include-group = "test" }, "cuda-toolkit[cudart]==13.*"]

[tool.uv]
conflicts = [
[
{ extra = "cu12" },
{ extra = "cu13" },
],
[
{ group = "test-cu12" },
{ group = "test-cu13" },
Copy link

Copilot AI Mar 20, 2026

Choose a reason for hiding this comment

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

The conflicts list groups test-cu12, test-cu13, test-cu12-ft, and test-cu13-ft into a single mutually-exclusive set. This would prevent installing both test-cu12 and test-cu12-ft together (same CUDA major), even though they appear to be complementary (CupPy vs free-threaded variant). Consider splitting this into two conflict entries (test-cu12 vs test-cu13, and test-cu12-ft vs test-cu13-ft) so only cross-CUDA combinations are disallowed.

Suggested change
{ group = "test-cu13" },
{ group = "test-cu13" },
],
[

Copilot uses AI. Check for mistakes.
{ group = "test-cu12-ft" },
{ group = "test-cu13-ft" },
],
]

[project.urls]
homepage = "https://nvidia.github.io/cuda-python/"
documentation = "https://nvidia.github.io/cuda-python/cuda-core/"
Expand Down
12 changes: 12 additions & 0 deletions cuda_pathfinder/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ test-cu13 = [
{ include-group = "host" },
]

[tool.uv]
conflicts = [
[
{ group = "cu12" },
{ group = "cu13" },
],
[
{ group = "test-cu12" },
{ group = "test-cu13" },
],
]

[project.urls]
Repository = "https://github.com/NVIDIA/cuda-python"
Documentation = "https://nvidia.github.io/cuda-python/"
Expand Down
Loading