We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e4923e + 929f7ab commit 2ab437dCopy full SHA for 2ab437d
numpydoc/numpydoc.py
@@ -176,6 +176,8 @@ def setup(app, get_doc_object_=get_doc_object):
176
global get_doc_object
177
get_doc_object = get_doc_object_
178
179
+ app.setup_extension('sphinx.ext.autosummary')
180
+
181
app.connect('autodoc-process-docstring', mangle_docstrings)
182
app.connect('autodoc-process-signature', mangle_signature)
183
app.connect('doctree-read', relabel_references)
@@ -191,8 +193,6 @@ def setup(app, get_doc_object_=get_doc_object):
191
193
app.add_domain(NumpyPythonDomain)
192
194
app.add_domain(NumpyCDomain)
195
- app.setup_extension('sphinx.ext.autosummary')
-
196
metadata = {'version': __version__,
197
'parallel_read_safe': True}
198
return metadata
0 commit comments