File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 26
26
# Add any Sphinx extension module names here, as strings.
27
27
# They can be extensions
28
28
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
29
- extensions = ["sphinx.ext.autodoc" , "sphinx.ext.doctest" ]
29
+ extensions = [
30
+ "sphinx.ext.autodoc" ,
31
+ "sphinx.ext.doctest" ,
32
+ "sphinx.ext.intersphinx" ,
33
+ ]
30
34
31
35
# Add any paths that contain templates here, relative to this directory.
32
36
templates_path = ["_templates" ]
83
87
# A list of ignored prefixes for module index sorting.
84
88
# modindex_common_prefix = []
85
89
90
+ intersphinx_mapping = {
91
+ "python" : ("https://docs.python.org/3" , None ),
92
+ }
93
+
94
+ nitpicky = True
95
+ nitpick_ignore = [
96
+ ("py:class" , "execnet.gateway_base.ChannelFileRead" ),
97
+ ("py:class" , "execnet.gateway_base.ChannelFileWrite" ),
98
+ ("py:class" , "execnet.gateway.Gateway" ),
99
+ ]
86
100
87
101
# -- Options for HTML output --------------------------------------------------
88
102
You can’t perform that action at this time.
0 commit comments