aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-12-05 22:17:15 -0500
committerJack Lloyd <[email protected]>2016-12-05 22:17:15 -0500
commit7c9d431d11fe2f3e7e43f2f8585e9be4495135c5 (patch)
tree1250a3dd66508a21e9fa6aff3f3c977a81a12e1b /src/scripts
parent8f580945b8f6b4ba6d8d6c55ca433f3c92ea6647 (diff)
Attempted fix for docs build
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/ci/travis/install.sh7
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