diff options
author | Jack Lloyd <[email protected]> | 2016-12-05 22:17:15 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-12-05 22:17:15 -0500 |
commit | 7c9d431d11fe2f3e7e43f2f8585e9be4495135c5 (patch) | |
tree | 1250a3dd66508a21e9fa6aff3f3c977a81a12e1b /src/scripts | |
parent | 8f580945b8f6b4ba6d8d6c55ca433f3c92ea6647 (diff) |
Attempted fix for docs build
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/ci/travis/install.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/scripts/ci/travis/install.sh b/src/scripts/ci/travis/install.sh index 9cbd65c83..c076a25ae 100755 --- a/src/scripts/ci/travis/install.sh +++ b/src/scripts/ci/travis/install.sh @@ -23,8 +23,11 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then if [ "$BUILD_MODE" = "docs" ]; then sudo apt-get install doxygen - # The version of Sphinx in 14.04 is too old (1.2.2) - # and does not support all C++ features used in the manual + + # The version of Sphinx in 14.04 is too old (1.2.2) and does not support + # all C++ features used in the manual. Install python-requests to avoid + # strange Ubuntu bug http://stackoverflow.com/questions/32779919/no-module-named-for-requests + sudo apt-get install python-requests sudo pip install sphinx fi |