1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Stuart Prescott <stuart@debian.org>
Date: Fri, 14 Mar 2025 23:52:43 +1100
Subject: Stop sphinx trying to download from network at build time
Sphinx tries to download catalogues for intersphinx links -- suppress that
here by removing the intersphinx extension.
---
docs/conf.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index f3eb375..e442b4a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -38,7 +38,6 @@ extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.coverage",
"sphinx.ext.extlinks",
- "sphinx.ext.intersphinx",
"sphinx.ext.todo",
"sphinx_copybutton",
"sphinxext.opengraph",
|