suspend support for sphinxcontrib.images

the sphinxcontrib.image extension was broken with sphinx 16.x.
however, sphinx 15.x breaks with newer version of the multiprocessor module.
so we suspend the thumbnail processing and lift the lock to sphinx 15.x

also, the number of parallel sphinx tasks is can be overridden with SPHINXEXTRA="-j #'.
default is to try use all local CPU cores.
This commit is contained in:
Axel Kohlmeyer
2017-12-07 15:38:15 -05:00
parent d029cb9002
commit ed8680d695
3 changed files with 20 additions and 13 deletions

View File

@ -31,8 +31,11 @@ import os
# ones.
extensions = [
'sphinx.ext.mathjax',
'sphinxcontrib.images',
]
# 2017-12-07: commented out, since this package is broken with Sphinx 16.x
# yet we can no longer use Sphinx 15.x, since that breaks with
# newer version of the multiprocessor module.
# 'sphinxcontrib.images',
images_config = {
'default_image_width' : '25%',