Add sphinx.ext.autodoc for doc build

After switching packaging to use build_sphinx, we need to add this
extension to avoid errors like:

 ERROR: Unknown directive type "automodule".

during doc build.

Change-Id: Ia9997b466d31a9422de64549a14196af173b1f63
This commit is contained in:
Javier Pena 2017-06-22 10:48:56 +02:00
parent 6fe9538519
commit ae42df731b
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ sys.path.append('..')
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = []
extensions = ['sphinx.ext.autodoc']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']