forked from scientific-python/executable-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
62 lines (54 loc) · 1.37 KB
/
pixi.toml
File metadata and controls
62 lines (54 loc) · 1.37 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
[project]
authors = [
"Dan Allan <dallan@bnl.gov>",
"Brigitta Sipőcz <brigitta.sipocz@gmail.com>",
"Ross Barnowski <rossbar@caltech.edu>",
"Kyle Sunden <git@ksunden.space>",
]
channels = ["conda-forge"]
description = "Add a short description here"
name = "executable-tutorials"
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
version = "0.1.0"
[tasks]
build = { cmd = [
"sphinx-build",
".", # source directory
"_build/html", # target directory
"-n", # warn about missing references
"-W", # any warnings fail the build
"-T", # show tracebacks
"--keep-going", # do not stop on error
] }
clean = "rm -rf _build/*"
start = "jupyter lab"
test = "bash ./test.sh"
[activation]
scripts = ["setup_jupyterlab_config.sh"]
[dependencies]
python = ">=3.11"
matplotlib-base = ">=3.9"
ipympl = ">=0.9"
jupyterlab = ">=4.2"
jupyterlab-myst = ">=2.4"
pytest = ">=8.3.5,<9"
nbval = ">=0.11.0,<0.12"
[pypi-dependencies]
sphinx = ">=8.0.2"
myst-nb = ">=1.1"
jupytext = ">=1.16"
sphinx-book-theme = ">=1.1"
sphinx-copybutton = ">=0.5"
[feature.py312.dependencies]
python = "3.12.*"
[feature.py313.dependencies]
python = "3.13.*"
[feature.jupyterlite.dependencies]
jupyterlab = "~=4.2.4"
jupyterlite-core = "==0.4.0"
jupyterlite-pyodide-kernel = "==0.4.1"
notebook = "~=7.2.1"
[environments]
py312 = ["py312"]
py313 = ["py313"]
jupyterlite = ["jupyterlite"]