1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
From: Andreas Tille <tille@debian.org>
Date: Sun, 8 Mar 2026 11:17:36 +0100
Subject: remove intersphinx
Last-Update: 2024-12-16
Bug-Debian: https://bugs.debian.org/1090162
---
doc/conf.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/doc/conf.py b/doc/conf.py
index 37bf632..d42da05 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -36,7 +36,7 @@ def setup(app):
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo',
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo',
'sphinx.ext.coverage', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode']
mathjax_path = 'file:///usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS-MML_HTMLorMML'
@@ -337,5 +337,3 @@ epub_copyright = u'2013, Llew S. Goodstadt'
#epub_use_index = True
-# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'http://docs.python.org/': None}
|