-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpixi.toml
More file actions
62 lines (53 loc) · 1.87 KB
/
pixi.toml
File metadata and controls
62 lines (53 loc) · 1.87 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
[workspace]
name = "anybody-tutorial"
version = "0.1.0"
description = "Python enviroments for AnyBody's Tutorials"
authors = ["Morten Enemark Lund <mel@anybodytech.com>"]
channels = ["https://prefix.dev/conda-forge", "anybody", "anybody/label/rc"]
platforms = ["win-64","linux-64"]
[tasks]
clean = "rm -rf _build"
linkcheck = {cmd="sphinx-build -M linkcheck . _build -q", depends-on = ["clean"]}
build-pdf = {cmd="sphinx-build -M simplepdf . _build", depends-on = ["clean"]}
build-html = "sphinx-build -M html . _build"
build-html-future = "sphinx-build -M html . _build -t future_tutorials"
build-html-all = "sphinx-build -M html . _build -a"
html = {cmd= 'explorer .\_build\html\index.html', depends-on = ["build-html-all"]}
pdf = {cmd= 'explorer .\_build\simplepdf\Agada-Documentation.pdf', depends-on = ["build-pdf"]}
livehtml = "sphinx-autobuild . _build --port=0 --open-browser -j=4"
[dependencies]
python = ">=3.13,<3.14"
sphinxext-opengraph = ">=0.13.0,<0.14"
sphinx-copybutton = ">=0.5.2,<0.6"
sphinxcontrib-youtube = ">=1.4.1,<2"
linkify-it-py = ">=2.0.3,<3"
ipython = ">=9.9.0,<10"
make = ">=4.4.1,<5"
sphinx-autobuild = ">=2025.8.25,<2026"
sphinx-simplepdf = ">=1.7.0,<2"
sphinx = ">=8.2.3,<9"
pygments_anyscript = ">=1.5.0,<2"
sphinx-togglebutton = ">=0.3.2,<0.4"
sphinx-design = ">=0.6.1,<0.7"
jinja2 = ">=3.1.6,<4"
tomli = ">=2.4.0,<3"
pytest = ">=9.0.2,<10"
myst-parser = ">=4.0.1,<5"
sphinx-book-theme = ">=1.1.4,<2"
myst-nb = ">=1.3.0,<2"
anypytools = ">=1.20.4,<2"
scipy = ">=1.17.0,<2"
ipywidgets = ">=8.1.8,<9"
pydata-sphinx-theme = ">=0.15.4,<0.16"
sphinx-reredirects = ">=1.1.0,<2"
[feature.test.target.win-64.dependencies]
pytest = ">=9.0.2,<10"
pytest-xdist = ">=3.8.0,<4"
anypytools = ">=1.20.4,<2"
debugpy = ">=1.8.19,<2"
pytest-split = ">=0.10.0,<0.11"
anybodycon = ">=8.1.4,<9"
[feature.test.target.win-64.tasks]
pytest = "pytest"
[environments.test]
features = ["test"]