diff options
author | Jack Lloyd <[email protected]> | 2018-05-29 13:08:13 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-05-29 13:08:13 -0400 |
commit | 5b60dae056a652c9eb0b480db8bfa020ead9d4e1 (patch) | |
tree | 30f2c2ad852a846362f57c2b7a552e656ca9eaa8 | |
parent | 3783a19be140881b37fbe3072e6d249f94d0e9a9 (diff) |
Fix allowing to use Sphinx 1.7.5
-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 |