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: Thu, 10 Aug 2017 10:35:00 +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 58be49a..86dc9bc 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -12,7 +12,7 @@ globals().update(conf.build_config(
github_project='celery/django-celery-results',
copyright='2009-2022',
django_settings='proj.settings',
- include_intersphinx={'python', 'sphinx', 'django', 'celery'},
+ intersphinx_mapping={},
path_additions=[os.path.join(os.pardir, 't')],
extra_extensions=['sphinx.ext.napoleon'],
html_logo='images/logo.png',
|