Diff of /pixi.toml [000000] .. [38ba34]

Switch to unified view

a b/pixi.toml
1
[project]
2
name = "ammr"
3
authors = ["Morten Enemark Lund <mel@anybodytech.com>"]
4
channels = ["conda-forge", "anybody/label/rc"]
5
platforms = ["linux-64", "win-64"]
6
7
[dependencies]
8
python = ">=3.12.8,<3.14"
9
jinja2 = ">=3.1.4"
10
debugpy = ">=1.8.11"
11
12
13
[feature.anybodycon.dependencies]
14
python = ">=3.12.0,<3.13"
15
anypytools="*"
16
nomkl = "*"
17
18
[feature.anybodycon.target.win-64.dependencies]
19
anybodycon = "==8.1.0beta4"
20
21
22
[feature.anybodycon.tasks]
23
update-mocap-files = {cmd = "python recreate_mocap_intermediate_files.py", cwd = "Tests", description = "Recreate MoCap application intermediate files"}
24
bmconfig = {cmd = "python render_templates.py", cwd = "Body/AAUHuman/BuildTools", description = "Create BM config files"}
25
26
27
[feature.test.dependencies]
28
pytest = ">=8.3.4,<9"
29
pytest-split = ">=0.10.0,<0.11"
30
pytest-xdist = ">=3.6.1,<4"
31
azure-storage-blob = ">=12.24.0,<13"
32
pillow = ">=11.1.0,<12"
33
34
35
[feature.test.tasks]
36
testall = {cmd = "pytest -n auto --dist worksteal --runslow", cwd = "Tests", description = "Run all tests"}
37
create-application-images = "python Docs/Applications/images/get_application_images.py"
38
39
40
41
[feature.docs.dependencies]
42
python = ">=3.13.2,<3.14"
43
sphinx-book-theme = ">=1.1.3,<2"
44
sphinx-thebe = ">=0.3.1,<0.4"
45
sphinxcontrib-youtube = ">=1.4.1,<2"
46
sphinx-tabs = ">=3.4.1,<4"
47
sphinx-design = ">=0.6.1,<0.7"
48
sphinx-togglebutton = ">=0.3.2,<0.4"
49
sphinxext-opengraph = ">=0.9.1,<0.10"
50
sphinxcontrib-bibtex = ">=2.6.3,<3"
51
sphinx-copybutton = ">=0.5.2,<0.6"
52
myst-parser = ">=4.0.1,<5"
53
pygments_anyscript = ">=1.4.0,<2"
54
jinja2 = ">=3.1.5,<4"
55
python-frontmatter = ">=1.1.0,<2"
56
pydantic = ">=2.10.6,<3"
57
tqdm = ">=4.67.1,<5"
58
pydata-sphinx-theme = "==0.15.4"
59
60
61
[feature.docs.tasks]
62
docs = {cmd = "sphinx-build -M html . _build -W --keep-going", cwd = "Docs", description = "Build documentation"}
63
docs-linkcheck = {cmd = "sphinx-build -M linkcheck . _build -W --keep-going -a -q ", cwd = "Docs"}
64
docs-clean = {cmd = "rm -rf _build", cwd = "Docs"}
65
66
67
[environments]
68
anybodycon = ["anybodycon"]
69
test = ["test", "anybodycon"]
70
docs = {features = ["docs"], no-default-feature = true}