From 73365fb9efbc1a75f0bed5ecf0684544abb57c3d Mon Sep 17 00:00:00 2001 From: RoryBarnes Date: Mon, 29 Dec 2025 16:50:56 -0800 Subject: [PATCH] Fix Sphinx RTD theme configuration for Sphinx 7.2.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restore sphinx_rtd_theme import and path insertion to match bigplanet configuration. The theme module must be imported and added to sys.path for Sphinx 7.2.6 to locate the theme properly. This reverts the previous attempt to remove these lines, which caused the "no theme named 'sphinx_rtd_theme' found" error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 9336e92..9116966 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,9 +10,11 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # +import sphinx_rtd_theme import os import sys sys.path.insert(0, os.path.abspath('.')) +sys.path.insert(0, os.path.abspath('sphinx_rtd_theme')) # -- Project information -----------------------------------------------------