-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpixi.toml
28 lines (26 loc) · 983 Bytes
/
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
[project]
authors = [
"Nick Ulle <[email protected]>",
"Tyler Shoemaker",
"Arthur Koehl"
]
channels = ["conda-forge"]
description = "Reader for the Python Basics workshop series."
name = "python-basics"
platforms = ["linux-64", "osx-64", "win-64"]
version = "2024.fall.0" # <year>.<quarter>.<revision #>
[tasks]
build = { cmd = "jupyter-book build .", description = "Build the reader." }
publish = { cmd = "ghp-import --no-jekyll --no-history --push _build/html", description = "Publish the reader to the `gh-pages` branch on GitHub." }
clean = { cmd = "rm -rf _build/", description = "Remove the build directory." }
rebuild = { depends-on = ["clean", "build"], description = "Remove the build directory and build the reader." }
[dependencies]
python = ">=3.12.7,<4"
jupyter-book = ">=1.0.3,<2"
matplotlib = ">=3.9.2,<4"
pandas = ">=2.2.3,<3"
plotnine = ">=0.13.6,<0.14"
requests-cache = ">=1.2.1,<2"
requests = ">=2.32.3,<3"
numpy = ">=2.1.2,<3"
ghp-import = ">=2.1.0,<3"