1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Michael Fladischer <FladischerMichael@fladi.at>
Date: Sun, 30 Jul 2017 23:36:34 +0200
Subject: Disable intersphinx mapping for now.
The best way to fix network requests when building the documentation would be to
patch INTERSPHINX_MAPPING in sphinx_celery.conf in src:sphinx-celery.
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index 4652af4..7549b55 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -17,7 +17,7 @@ globals().update(conf.build_config(
html_favicon='images/favicon.ico',
html_prepend_sidebars=['sidebardonations.html'],
extra_extensions=[],
- include_intersphinx={'python', 'sphinx'},
+ intersphinx_mapping={},
apicheck_package='amqp',
apicheck_ignore_modules=['amqp'],
))
|