-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpixi.toml
More file actions
77 lines (56 loc) · 2.26 KB
/
pixi.toml
File metadata and controls
77 lines (56 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[workspace]
name = "ammr"
authors = ["Morten Enemark Lund <mel@anybodytech.com>"]
channels = ["conda-forge", "anybody", "anybody/label/rc", "https://prefix.dev/anybody-beta"]
platforms = ["linux-64", "win-64"]
[environments]
default = []
anybodycon = ["anybodycon"]
test = ["test", "anybodycon"]
docs = {features = ["docs"], no-default-feature = true}
[dependencies]
python = ">=3.13.2,<3.14"
jinja2 = ">=3.1.6,<4"
debugpy = ">=1.8.18,<2"
[tasks]
bmconfig = {cmd = "python render_templates.py", cwd = "Body/AAUHuman/BuildTools", description = "Create BM config files", default-environment = "default"}
[feature.anybodycon.dependencies]
anypytools=">=1.20.4,<2"
nomkl = ">=1.0,<2"
[feature.anybodycon.target.win-64.dependencies]
anybodycon = { version = ">=8.2.0Beta9", build-number = ">=14069"}
[feature.anybodycon.tasks]
update-mocap-files = {cmd = "python recreate_mocap_intermediate_files.py", cwd = "Tests", description = "Recreate MoCap application intermediate files"}
[feature.test.dependencies]
pytest = ">=9.0,<10.0"
pytest-split = ">=0.10.0,<0.11"
pytest-xdist = ">=3.8.0,<4"
azure-storage-blob = ">=12.28.0,<13"
pillow = ">=12.1.0,<13"
[feature.test.tasks]
testall = {cmd = "pytest -n auto --dist worksteal --runslow", cwd = "Tests", description = "Run all tests"}
create-application-images = "python Docs/Applications/images/get_application_images.py"
[feature.docs.dependencies]
python = ">=3.14.2,<3.15"
sphinx-book-theme = ">=1.1.4,<2"
sphinx-thebe = ">=0.3.1,<0.4"
sphinxcontrib-youtube = ">=1.4.1,<2"
sphinx-tabs = ">=3.4.1,<4"
sphinx-design = ">=0.6.1,<0.7"
sphinx-togglebutton = ">=0.3.2,<0.4"
sphinxext-opengraph = ">=0.13.0,<0.14"
sphinxcontrib-bibtex = ">=2.6.5,<3"
sphinx-copybutton = ">=0.5.2,<0.6"
myst-parser = ">=4.0.1,<5"
pygments_anyscript = ">=1.5.0,<2"
jinja2 = ">=3.1.6,<4"
python-frontmatter = ">=1.1.0,<2"
pydantic = ">=2.12.5,<3"
tqdm = ">=4.67.1,<5"
pydata-sphinx-theme = ">=0.15.4,<0.16"
sphinxcontrib-video = ">=0.4.1,<0.5"
debugpy = ">=1.8.18,<2"
[feature.docs.tasks]
docs = {cmd = "sphinx-build -M html . _build -W --keep-going -t offline -t anylink", cwd = "Docs", description = "Build documentation"}
docs-linkcheck = {cmd = "sphinx-build -M linkcheck . _build -W --keep-going -a -q ", cwd = "Docs"}
docs-clean = {cmd = "rm -rf _build", cwd = "Docs"}