aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-04-22 17:05:43 +0200
committerEven Rouault <even.rouault@spatialys.com>2019-04-22 18:02:31 +0200
commit798eaa9b0d359a460cc7c96dc453178e0f27dedb (patch)
treeb42f0e2c33de28ca8ec13a2fe71eb4a66ac691e7
parent3ff977b659152dea48b6052d63ecce495eb50200 (diff)
downloadPROJ-798eaa9b0d359a460cc7c96dc453178e0f27dedb.tar.gz
PROJ-798eaa9b0d359a460cc7c96dc453178e0f27dedb.zip
Fix doc build on Travis OSX
Latest breathe 4.13.0 no longer work with sphinx 1.8.5 / Pyhon 2, so force use 4.12.0 for now. See https://travis-ci.com/OSGeo/proj.4/jobs/194629602 https://github.com/michaeljones/breathe/issues/431
-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)