1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Edward Betts <edward@4angle.com>
Date: Fri, 7 Feb 2025 12:25:32 +0000
Subject: disable the sphinxcontrib.fulltoc extension
sphinxcontrib.fulltoc isn't required and isn't in Debian
---
docs/source/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 7f61bc3..25e4ac2 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -43,7 +43,7 @@ release = __version__
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.githubpages",
- "sphinxcontrib.fulltoc",
+# "sphinxcontrib.fulltoc",
]
# Add any paths that contain templates here, relative to this directory.
|