From 08a6caf1e57f5f11f6f059d4020aca3c2904538f Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Wed, 8 Oct 2025 19:23:40 -0400 Subject: [PATCH 1/2] Update documentation build to use myst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace deprecated jb/jupyter book commands with myst commands per project requirements. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Makefile | 4 ++-- changelog_entry.yaml | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0e4859c2f..9bf389033 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ all: install format test build changelog documentation: - jb clean docs - jb build docs + myst clean --all docs + myst build docs format: black . -l 79 diff --git a/changelog_entry.yaml b/changelog_entry.yaml index e69de29bb..8a772346a 100644 --- a/changelog_entry.yaml +++ b/changelog_entry.yaml @@ -0,0 +1,4 @@ +- bump: patch + changes: + fixed: + - Update documentation command to use myst instead of deprecated jb/jupyter book From 6e241dda337fb736fc309e25365077f44edfcb8c Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Wed, 8 Oct 2025 19:26:23 -0400 Subject: [PATCH 2/2] Require jupyter-book>=2.0.0a0 for myst command --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bd9e5f4b6..47c6e3819 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ dev_requirements = [ "furo", - "jupyter-book", + "jupyter-book>=2.0.0a0", "markupsafe", "pydata-sphinx-theme", "sphinx",