From 5b60dae056a652c9eb0b480db8bfa020ead9d4e1 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Tue, 29 May 2018 13:08:13 -0400 Subject: Fix allowing to use Sphinx 1.7.5 --- src/scripts/ci/setup_travis.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index 04d03b6d6..52661494f 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -79,9 +79,12 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then # all C++ features used in the manual. Install python-requests to avoid # problem in Ubuntu packaged version, see # http://stackoverflow.com/questions/32779919/no-module-named-for-requests - sudo apt-get remove python-requests python-openssl - sudo pip install requests pyopenssl - sudo pip install sphinx==1.7.4 + # + # Reinstall roman due to https://github.com/sphinx-doc/sphinx/issues/5022 + # + + sudo apt-get remove python-requests python-openssl python-roman + sudo pip install requests pyopenssl roman sphinx fi elif [ "$TRAVIS_OS_NAME" = "osx" ]; then -- cgit v1.2.3