Skip to content

Commit 648f529

Browse files
Fix Makefile to use jupyter-book CLI instead of python -m
jupyter-book v1 doesn't support python -m invocation. Use the jupyter-book CLI command directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8e2eba4 commit 648f529

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
all: install format test build changelog
22

33
documentation:
4-
python -m jupyter_book clean docs
5-
python -m jupyter_book build docs
4+
jupyter-book clean docs
5+
jupyter-book build docs
66

77
format:
88
black . -l 79

0 commit comments

Comments
 (0)