-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpixi.toml
More file actions
56 lines (42 loc) · 1.26 KB
/
pixi.toml
File metadata and controls
56 lines (42 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
[workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64", "win-64"]
preview = ["pixi-build"]
[dependencies]
cuda-pathfinder = { path = "." }
[feature.test.dependencies]
pytest = ">=6.2.4"
pytest-mock = "*"
pytest-repeat = "*"
pytest-randomly = "*"
[feature.cu12.system-requirements]
cuda = "12"
[feature.cu12.dependencies]
cuda-version = ">=12.0,<13"
[feature.cu13.system-requirements]
cuda = "13"
[feature.cu13.dependencies]
cuda-version = ">=13.1,<14"
[environments]
default = { features = ["cu13", "test"], solve-group = "default" }
cu13 = { features = ["cu13", "test"], solve-group = "default" }
cu12 = { features = ["cu12", "test"], solve-group = "cu12" }
# TODO: check if these can be extracted from pyproject.toml
[package]
name = "cuda-pathfinder"
version = "1.5.0"
[package.build]
backend = { name = "pixi-build-python", version = "*" }
[package.host-dependencies]
python = "*"
setuptools = ">=80"
setuptools-scm = ">=8"
[package.run-dependencies]
python = ">=3.10"
[target.linux.tasks.test]
cmd = ["pytest", "$PIXI_PROJECT_ROOT"]
[target.win-64.tasks.test]
cmd = ["pytest", "%PIXI_PROJECT_ROOT%"]