aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@mines-paris.org>2019-04-22 18:00:07 +0200
committerGitHub <noreply@github.com>2019-04-22 18:00:07 +0200
commita73897b846cda97dfde9bd904d78b2049a6fb475 (patch)
tree2ca198de27c32f7c88752153ee3fe61b9e74e87f
parentebf77064c0ffb0082e4ddf97ae9c5c3cbe3c0411 (diff)
parente5c84c7383697ae5a698563bcf93fdcc74215da6 (diff)
downloadPROJ-a73897b846cda97dfde9bd904d78b2049a6fb475.tar.gz
PROJ-a73897b846cda97dfde9bd904d78b2049a6fb475.zip
Merge pull request #1439 from rouault/fix_osx_doc_build
Fix doc build on Travis OSX
-rwxr-xr-xtravis/osx/before_install.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/travis/osx/before_install.sh b/travis/osx/before_install.sh
index 3e9d8d46..a5d40af5 100755
--- a/travis/osx/before_install.sh
+++ b/travis/osx/before_install.sh
@@ -10,6 +10,7 @@ brew install sqlite3
brew install doxygen
export PATH=$HOME/Library/Python/2.7/bin:$PATH
-pip install --user sphinx sphinx-rtd-theme sphinxcontrib-bibtex breathe
+# breathe=4.12.0 is the last version to work for us with sphinx 1.8.5 / Python 2
+pip install --user sphinx sphinx-rtd-theme sphinxcontrib-bibtex breathe==4.12.0
which sphinx-build
(cd docs; make html)