From c245280c35cffe952af206553c69e15db6ce103c Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Wed, 12 Oct 2016 13:16:38 +0200 Subject: [PATCH] Make matplotlib extension commented out --- templates/sphinx-conf.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/templates/sphinx-conf.py b/templates/sphinx-conf.py index 44b811f..5edac51 100644 --- a/templates/sphinx-conf.py +++ b/templates/sphinx-conf.py @@ -25,7 +25,7 @@ extensions = [ 'sphinx.ext.intersphinx', 'sphinx.ext.napoleon', 'sphinx.ext.viewcode', - 'matplotlib.sphinxext.plot_directive' + #'matplotlib.sphinxext.plot_directive' ] import sphinx @@ -240,7 +240,10 @@ autodoc_default_flags = [ from bob.extension.utils import link_documentation, load_requirements sphinx_requirements = "extra-intersphinx.txt" if os.path.exists(sphinx_requirements): - intersphinx_mapping = link_documentation(additional_packages=['python', 'numpy']+load_requirements(sphinx_requirements)) + intersphinx_mapping = link_documentation( + additional_packages=['python','numpy'] + \ + load_requirements(sphinx_requirements) + ) else: intersphinx_mapping = link_documentation() -- GitLab