You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since I update sphinx to version 1.5.2, I have the following problem at doc compilation (make html):
WARNING: sphinx.ext.pngmath has been deprecated. Please use sphinx.ext.imgmath instead.
Extension error:
sphinx.ext.mathjax: other math package is already loaded
make: *** [html] Erreur 1
I modified the conf.py as
import os,sys
# read sphinx conf.py file
from openalea.misc.sphinx_configuration import *
from openalea.misc.sphinx_tools import sphinx_check_version
from openalea.deploy.metainfo import read_metainfo, compulsary_words
sys.path.append(os.path.abspath('sphinxext'))
extensions = ['sphinx.ext.imgmath']
... etc.
and the compilation is OK but in html doc the link do not work anymore, and the autodoc does not go through the module. Does anyone know how to fix this?
Cheers,
JB
The text was updated successfully, but these errors were encountered:
Since I update sphinx to version 1.5.2, I have the following problem at doc compilation (
make html
):I modified the conf.py as
and the compilation is OK but in html doc the link do not work anymore, and the autodoc does not go through the module. Does anyone know how to fix this?
Cheers,
JB
The text was updated successfully, but these errors were encountered: