-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpixi.toml
22 lines (20 loc) · 880 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
[project]
authors = [
"Oliver Kreylos <[email protected]>",
"Tyler Shoemaker",
"Nick Ulle <[email protected]>"
]
channels = ["conda-forge"]
description = "Reader for the Intro to Remote Computing workshop series."
name = "intro_to_remote_computing"
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"
ghp-import = ">=2.1.0,<3"