-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpixi.toml
More file actions
58 lines (47 loc) · 1.3 KB
/
pixi.toml
File metadata and controls
58 lines (47 loc) · 1.3 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
57
58
[workspace]
channels = ["https://prefix.dev/conda-forge"]
platforms = ["win-64", "linux-64", "osx-arm64", "osx-64", "linux-aarch64"]
# NOTE: this doesn't work so well with compiled code ...
# [pypi-dependencies]
# geometry_utils = { path = ".", editable = true }
[dependencies]
cmake = "*"
cython = "*"
cython-cmake = "*"
ninja = "*"
numpy = "*"
pip = "*"
python = "*"
python-build = "*"
scikit-build-core = "*"
pytest = "*"
pytest-cov = "*"
pytest-run-parallel = "*"
[feature.py311.dependencies]
python = "~=3.11"
[feature.py312.dependencies]
python = "~=3.12"
[feature.py313.dependencies]
python = "~=3.13"
[feature.py314.dependencies]
python = "~=3.14"
[feature.py314t.dependencies]
python = "~=3.14"
python-freethreading = "*"
[feature.dev.pypi-dependencies]
geometry_utils = { path = ".", editable = true }
[feature.dev.dependencies]
ipython = "*"
matplotlib = "*"
[environments]
default = { solve-group = "default" }
py311 = [ "py311" ]
py312 = [ "py312" ]
py313 = [ "py313" ]
py314 = [ "py314" ]
py314t = [ "py314t" ]
dev = ["dev", "py311"]
[tasks]
build = "pip install --no-build-isolation ."
test = { cmd = ["pytest", "--pyargs", "geometry_utils"], depends-on = ["build"] }
test_threading = { cmd = ["pytest", "--parallel-threads=20", "--iterations=20", "--pyargs", "geometry_utils", ], depends-on = ["build"] }