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 30 31 32
|
From: Denis Danilov <danilovdenis@yandex.ru>
Date: Tue, 21 May 2019 20:12:52 +0200
Subject: disable intersphinx and info extensions
The intersphinx and info extensions use network during the build. The info
extension may even fail the build if network is available (Bug #929232).
Forwarded: not-needed
---
doc/conf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/conf.py b/doc/conf.py
index 10ce438..3a93e14 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -36,13 +36,13 @@ ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
needs_sphinx = '1.3'
extensions = [
- 'sphinx.ext.intersphinx',
+ #'sphinx.ext.intersphinx',
'sphinx.ext.extlinks',
'sphinx.ext.todo',
# Domain for Emacs Lisp
'elisp',
# Cross-references to info nodes
- 'info'
+ #'info'
]
# Project metadata
|