Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Requirements for building docs
# You will first need a matching matplotlib installed
# You will first need a matching matplotlib installation
# e.g (from the matplotlib root directory)
# pip install -e .
#
Expand All @@ -13,3 +13,4 @@ ipywidgets
numpydoc>=0.8
pillow>=3.4
sphinx-gallery>=0.2
sphinx-copybutton
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
# General configuration
# ---------------------

# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.autosummary',
Expand All @@ -45,6 +45,7 @@
'sphinxext.math_symbol_table',
'sphinxext.mock_gui_toolkits',
'sphinxext.skip_deprecated',
'sphinx_copybutton',
]

exclude_patterns = ['api/api_changes/*', 'users/whats_new/*']
Expand Down
13 changes: 4 additions & 9 deletions doc/devel/documenting_mpl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,10 @@ Installing dependencies
The documentation for Matplotlib is generated from reStructuredText (ReST_)
using the Sphinx_ documentation generation tool. There are several extra
requirements that are needed to build the documentation. They are listed in
:file:`doc-requirements.txt` and listed below:

* Sphinx>=1.3, !=1.5.0, !=1.6.4, !=1.7.3
* colorspacious
* IPython
* numpydoc>=0.8
* Pillow>=3.4
* sphinx-gallery>=0.2
* graphviz
:file:`doc-requirements.txt`, which is shown below:

.. include:: ../../doc-requirements.txt
:literal:

.. note::

Expand Down