1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Disable 'sphinx.ext.intersphinx' (no internet on buildd)
Disable sphinx.ext.intersphinx because buildd doesn't have internet
access (thanks zigo).
Author: Sebastien Badia <seb@sebian.fr>
Forwarded: not-needed
Last-Update: 2021-03-12
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -23,7 +23,7 @@ needs_sphinx = '2.0'
# 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', 'sphinx.ext.coverage', 'sphinx.ext.imgmath', 'sphinx.ext.ifconfig']
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.imgmath', 'sphinx.ext.ifconfig']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
|