diff options
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 9 |
1 files 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 |