Package: wand / 0.4.4-3

no-intersphinx.patch Patch series | download
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
Description: Do not use intersphinx
 According to the Debian policy 3.9.7, the build should not attempt network
 connection.
Forwarded: not-needed
Author: Changwoo Ryu <cwryu@debian.org>
Last-Update: 2016-10-22

diff --git a/docs/conf.py b/docs/conf.py
index 064ed8b..7b16091 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -60,7 +60,7 @@ if os.environ.get('READTHEDOCS', 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.intersphinx',
+extensions = ['sphinx.ext.autodoc', #'sphinx.ext.intersphinx',
               'sphinx.ext.extlinks', 'sphinx.ext.todo']
 
 # Add any paths that contain templates here, relative to this directory.
@@ -257,7 +257,7 @@ man_pages = [
 
 
 # Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'http://docs.python.org/': None}
+#intersphinx_mapping = {'http://docs.python.org/': None}
 
 extlinks = {
     'issue': ('https://github.com/dahlia/wand/issues/%s', '#'),