diff options
author | Tim Harder <radhermit@gmail.com> | 2019-08-23 01:15:35 -0600 |
---|---|---|
committer | Tim Harder <radhermit@gmail.com> | 2019-08-23 01:15:35 -0600 |
commit | 2fd8647298f4b9a81c19d527e5027a8f6f0b47ae (patch) | |
tree | b74fb0bc67c73868d774223fcb4e8aaf152e1b11 /doc | |
parent | bump snakeoil dep to 0.8.1 (diff) | |
download | pkgcore-2fd8647298f4b9a81c19d527e5027a8f6f0b47ae.tar.gz pkgcore-2fd8647298f4b9a81c19d527e5027a8f6f0b47ae.tar.bz2 pkgcore-2fd8647298f4b9a81c19d527e5027a8f6f0b47ae.zip |
doc: disable sphinx.ext.autosummary as it current breaks with sphinx-2.2.0
With the following exception: TypeError: 'bool' object is not iterable
Diffstat (limited to 'doc')
-rw-r--r-- | doc/conf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py index 53528cda..dc576710 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -37,7 +37,7 @@ on_rtd = os.environ.get('READTHEDOCS', None) == 'True' # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ 'sphinx.ext.extlinks', - 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.doctest', + 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode', ] @@ -292,7 +292,6 @@ intersphinx_mapping = { 'python': ('http://docs.python.org/', None), 'snakeoil': ('https://github.com/pkgcore/snakeoil', None), } -autosummary_generate = False autodoc_default_flags = [ "members", "show-inheritance", "inherited-members", "undoc-members"] |