diff options
author | Jack Lloyd <[email protected]> | 2018-05-28 19:16:45 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-05-28 19:16:45 -0400 |
commit | 8572b74e18b340df449db39b9946efeeb832e803 (patch) | |
tree | 0eaf8d4993d7d995bf6be349c6ab19bd9867b055 /src/scripts/ci | |
parent | 47709170170a1f707fcd9fc24c88e3c0a730afea (diff) |
Avoid problem with Sphinx 1.7.5
Diffstat (limited to 'src/scripts/ci')
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index 4427631fd..04d03b6d6 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -80,7 +80,8 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then # 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 sphinx pyopenssl + sudo pip install requests pyopenssl + sudo pip install sphinx==1.7.4 fi elif [ "$TRAVIS_OS_NAME" = "osx" ]; then |