We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6554807 commit ec79ef9Copy full SHA for ec79ef9
1 file changed
docs/build.sh
@@ -0,0 +1,19 @@
1
+#!/usr/bin/env bash
2
+
3
+if [[ ! -f "../pyproject.toml" ]]; then
4
+ echo "WTF"
5
+ exit 1
6
+fi
7
8
+TARGET=singlehtml
9
10
+python3 -m venv .docs_venv
11
12
+echo "Installing dependencies"
13
+.docs_venv/bin/pip install sphinx myst_parser
14
15
+echo "Installing python bindings"
16
+.docs_venv/bin/pip install --force --no-cache ..
17
18
+echo "Building the website"
19
+.docs_venv/bin/sphinx-build -M ${TARGET} . _build
0 commit comments