-
Notifications
You must be signed in to change notification settings - Fork 4
/
pixi.toml
91 lines (76 loc) · 1.77 KB
/
pixi.toml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[project]
name = "spox"
channels = ["conda-forge"]
platforms = ["osx-arm64", "osx-64", "linux-64", "linux-aarch64", "win-64"]
[tasks]
postinstall = "pip install --no-build-isolation --no-deps --disable-pip-version-check -e ."
[dependencies]
python = ">=3.9"
numpy = "*"
onnx = "*"
packaging = "*"
[host-dependencies]
pip = "*"
setuptools = ">=61"
setuptools-scm = "*"
[feature.lint.dependencies]
pre-commit = "*"
insert-license-header = "*"
mypy = "*"
prettier = "*"
ruff = "*"
[feature.lint.tasks]
pre-commit-install = "pre-commit install"
pre-commit-run = "pre-commit run -a"
[feature.docs.dependencies]
sphinx = "*"
sphinx_rtd_theme = "*"
sphinxcontrib-apidoc = "*"
nbsphinx = "*"
ipython = "*"
jupyterlab = "*"
matplotlib = "*"
make = "*"
onnxruntime = "*"
numpydoc = "*"
[feature.docs.tasks]
build-docs = "cd docs && make html"
[feature.opset-generation.dependencies]
pandoc = "*"
jinja2 = "*"
python = "3.9.*"
onnx = "*"
[feature.opset-generation.tasks]
generate-opset = "./tools/generate_opset.sh"
[feature.test.dependencies]
pytest = "*"
pytest-xdist = "*"
pytest-json-report = "*"
onnxruntime = "*"
[feature.test.tasks]
test = "pytest -nauto"
[feature.build.dependencies]
python-build = "*"
[feature.build.tasks]
build-wheel = "python -m build --no-isolation ."
[feature.py39.dependencies]
python = "3.9.*"
[feature.py310.dependencies]
python = "3.10.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
[feature.weekly.pypi-dependencies]
onnx-weekly = "*"
[environments]
default = ["test", "lint"]
py39 = ["py39", "test"]
py310 = ["py310", "test"]
py311 = ["py311", "test"]
py312 = ["py312", "test"]
weekly = ["weekly", "py312", "test"]
docs = ["docs"]
build = ["build"]
lint = ["lint", "py310"]
opset-generation = ["opset-generation", "lint"]