From 1ce1c6cbcc1b293b9ab00075bcf26b2899086110 Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Thu, 18 Oct 2018 16:11:41 +0200 Subject: [PATCH] Require Sphinx >= 1.4 This is needed for sphinx.util.images.get_image_size(). --- .travis.yml | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f3f31ab5..f7e4708e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,7 @@ matrix: - env: ADDITIONAL_COMMAND="python -m sphinx doc/ doc/_build/ -b linkcheck" # a few older Sphinx releases using default Python version - - env: SPHINX="==1.3.2 docutils<0.13.1" - - env: SPHINX="==1.3.6 docutils<0.13.1" + - env: SPHINX="==1.4.0 docutils<0.13.1" - env: SPHINX="==1.4.9 docutils<0.13.1" - env: SPHINX="==1.5.0 docutils<0.13.1" - env: SPHINX="==1.5.1" diff --git a/setup.py b/setup.py index 392db2f2..e56aa7cd 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ 'nbconvert!=5.4', 'traitlets', 'nbformat', - 'sphinx>=1.3.2', + 'sphinx>=1.4', ], author='Matthias Geier', author_email='Matthias.Geier@gmail.com',