diff --git a/.travis.yml b/.travis.yml index 7f21018f7260..5bc5a37c6c52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -141,7 +141,7 @@ script: gdb -return-child-result -batch -ex r -ex bt --args python tests.py -s --processes=$NPROC --process-timeout=300 $TEST_ARGS else cd doc - python make.py html --small + python make.py html # We don't build the LaTeX docs here, so linkchecker will complain touch build/html/Matplotlib.pdf linkchecker build/html/index.html diff --git a/doc/conf.py b/doc/conf.py index b5cc8847a0fc..7eef3bf5d742 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -115,7 +115,7 @@ # Plot directive configuration # ---------------------------- -plot_formats = [('png', 80), ('hires.png', 200), ('pdf', 50)] +plot_formats = [('png', 100), ('pdf', 100)] # Subdirectories in 'examples/' directory of package and titles for gallery mpl_example_sections = [ diff --git a/doc/make.py b/doc/make.py index 899e409edc38..d41d786bdb62 100755 --- a/doc/make.py +++ b/doc/make.py @@ -47,7 +47,7 @@ def html(buildername='html'): copy_if_out_of_date(rc, '_static/matplotlibrc') if small_docs: - options = "-D plot_formats=png:80" + options = "-D plot_formats=png:100" else: options = '' if warnings_as_errors: