From 948075e1af7e3e46b82b65911acdca1eab39c6f5 Mon Sep 17 00:00:00 2001 From: FBumann <117816358+FBumann@users.noreply.github.com> Date: Sat, 13 Jun 2026 18:13:42 +0200 Subject: [PATCH] fix(docs): repair mobile sidebar by bumping sphinx-book-theme to 1.2.0 The docs pinned sphinx_book_theme==1.1.3, which has no upper bound on pydata-sphinx-theme and therefore resolved to pydata 0.16.1. The 1.1.x book theme predates pydata 0.16 and its mobile sidebar toggle JS breaks against it, so the navigation sidebar and ToC no longer open on mobile. Bump to sphinx_book_theme==1.2.0, the first release that pins and supports pydata-sphinx-theme==0.16.1, restoring the mobile toggles. Closes #775 Co-Authored-By: Claude Opus 4.8 (1M context) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 19d0abb3..24957fc8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ docs = [ "numpydoc==1.7.0", "sphinx==7.3.7", "sphinx_rtd_theme==2.0.0", - "sphinx_book_theme==1.1.3", + "sphinx_book_theme==1.2.0", "sphinx-copybutton==0.5.2", "nbsphinx==0.9.4", "nbsphinx-link==1.3.0",