8000 ENH doc is now built with the new sphinx build by NelleV · Pull Request #6663 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

ENH doc is now built with the new sphinx build #6663

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
FIX travis now builds docs with new makefile
  • Loading branch information
NelleV committed Sep 8, 2016
commit ab956b1d3254b9ba6f9866a63c96aaf249a84dce
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ script:
fi
else
cd doc
python make.py html -n 2
make html-small-plots -j 2
# We don't build the LaTeX docs here, so linkchecker will complain
touch build/html/Matplotlib.pdf
# Linkchecker only works with python 2.7 for the time being
Expand Down
4 changes: 2 additions & 2 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ clean:
rm -rf users/installing.rst
rm -rf _templates/gallery.html

html:
html: prepare
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html -W
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."

html-small-plots:
html-small-plots: prepare
$(SPHINXBUILD) -D plot_formats=png:80 -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html -W
@echo
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
Expand Down
0