Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
110 changes: 110 additions & 0 deletions cuda_pathfinder/pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 12 additions & 4 deletions cuda_pathfinder/pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,18 @@ channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64", "win-64"]
preview = ["pixi-build"]

[workspace.build-variants]
python = ["3.10.*", "3.11.*", "3.12.*", "3.13.*", "3.14.*"]

[dependencies]
cuda-pathfinder = { path = "." }

[feature.test.dependencies]
pytest = ">=6.2.4"

[feature.cu12.system-requirements]
cuda = "12"

[feature.cu12.dependencies]
cuda-version = ">=12.0,<13"

[feature.cu13.system-requirements]
cuda = "13"

Expand All @@ -24,6 +27,7 @@ cuda-version = ">=13.1,<14"

[environments]
default = { features = ["test"], solve-group = "default" }
cu12 = { features = ["cu12", "test"], solve-group = "cu12" }
cu13 = { features = ["cu13", "test"], solve-group = "cu13" }

# TODO: check if these can be extracted from pyproject.toml
Expand All @@ -39,7 +43,11 @@ python = "*"
setuptools = ">=64"

[package.run-dependencies]
python = "*"
python = ">=3.10"
setuptools = ">=64"

[package.run-dependencies]
python = ">=3.10"

@cpcloud cpcloud Dec 12, 2025

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

These are duplicated, which is a bug. I'll add a suggestion here to fix it.

Comment thread
cpcloud marked this conversation as resolved.
Outdated

[target.linux.tasks.test]
cmd = ["pytest", "$PIXI_PROJECT_ROOT"]
Expand Down