To build the Matplotlib development documentation (here: matplotlib.org/devdocs) we use Travis-CI to automatically build the docs using Sphinx installed from pip. In order to catch as manny of our own formatting, broken links etc issues we are treating warnings as errors. This used to work great and have helped us catch a number of issues. But with Sphinx 1.3 this causes our docs build to fail since a new warning is raised:
WARNING: the config value 'html_domain_indices' has type `list', defaults to `bool.' Sure enough we do set html_domain_indices to a list: html_domain_indices = ["py-modindex"] However, this is described in the documentation here http://sphinx-doc.org/config.html?highlight=html_domain_indices#confval-html_domain_indices and should as far as I can see be ok. Is setting html_domain_indices to a list deprecated? If so what is the best alternative? Alternatively is there an easy way to suppress this warning. Thanks Jens -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/d/optout.
