-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
67 lines (58 loc) · 1.39 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
[project]
channels = ["conda-forge"]
name = "mkdocs-marimo"
platforms = ["linux-64", "linux-aarch64", "osx-arm64", "osx-64", "win-64"]
[tasks]
postinstall = "pip install --no-deps --no-build-isolation --disable-pip-version-check -e ."
[dependencies]
htmlmin = ">=0.1.12,<0.2"
marimo = ">=0.9.11"
mkdocs = ">=1.6.1,<2"
python = ">=3.9"
[host-dependencies]
hatchling = "*"
pip = "*"
[feature.test.dependencies]
mypy = "*"
pytest = "*"
[feature.test.tasks]
test = "pytest -xs"
[feature.docs.dependencies]
mkdocs = "*"
mkdocs-material = "*"
# For examples
matplotlib-base = "*"
numpy = "*"
pandas = "*"
[feature.docs.tasks]
docs = "mkdocs serve"
docs-build = "mkdocs build"
[feature.lint.dependencies]
pre-commit = "*"
pre-commit-hooks = "*"
ruff = "*"
taplo = "*"
typos = "*"
[feature.lint.tasks]
pre-commit-install = "pre-commit install"
pre-commit-run = "pre-commit run -a"
[feature.build.dependencies]
hatchling = "*"
python-build = "*"
[feature.py39.dependencies]
python = "3.9.*"
[feature.py310.dependencies]
python = "3.10.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
[environments]
build = { features = ["build"], no-default-feature = true }
default = ["test", "py312", "docs"]
docs = ["docs"]
lint = { features = ["lint"], no-default-feature = true }
py310 = ["test", "py310"]
py311 = ["test", "py311"]
py312 = ["test", "py312"]
py39 = ["test", "py39"]