Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
BUILDDIR = _build
DOXYGEN_XML=doxygen/xml
BUILDDIR = _build
DOXYGEN_XML = doxygen/xml

all: ${DOXYGEN_XML} dev
all: ${DOXYGEN_XML}
./build.sh

${DOXYGEN_XML}: ../c/tskit/*.h
cd doxygen && doxygen

dev:
uv --project=../python run jupyter-book build -Wn --keep-going .

clean:
rm -fR $(BUILDDIR) $(DOXYGEN_XML)
2 changes: 1 addition & 1 deletion docs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

REPORTDIR=_build/html/reports

jupyter-book build -Wn --keep-going .
uv run --project=../python --group docs jupyter-book build . -vnW --keep-going
RETVAL=$?
if [ $RETVAL -ne 0 ]; then
if [ -e $REPORTDIR ]; then
Expand Down