diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-09-22 14:00:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-22 14:00:25 +0200 |
| commit | 1cef32f18ecfb4f221bde0736c49a9e8f4a47641 (patch) | |
| tree | ec0b2373527f0d421da97f9437d91d745ba947cd | |
| parent | 39d25a76502ab257d08032c272c0e700dcece149 (diff) | |
| parent | 6b5a1b676e8ec15da7ff1d1ac48595e9ce4662ce (diff) | |
| download | PROJ-1cef32f18ecfb4f221bde0736c49a9e8f4a47641.tar.gz PROJ-1cef32f18ecfb4f221bde0736c49a9e8f4a47641.zip | |
Merge pull request #1627 from rouault/fix_linux_gcc_config_wrt_sphinxontrib_bibtex
Travis linux_gcc: force sphinxcontrib-bibtex version to avoid issue with installing sphinx >= 2.0
| -rwxr-xr-x | travis/linux_gcc/before_install.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/travis/linux_gcc/before_install.sh b/travis/linux_gcc/before_install.sh index 5564ff8f..f7111631 100755 --- a/travis/linux_gcc/before_install.sh +++ b/travis/linux_gcc/before_install.sh @@ -15,7 +15,10 @@ sudo apt-get install -qq openjdk-7-jdk scripts/cppcheck.sh scripts/doxygen.sh -pip3 install --user sphinxcontrib-bibtex +# Force sphinxcontrib-bibtex version to 0.4.2, because 1.0.0 requires +# sphinx >= 2.0 which is only available on Python >= 3.5, and this config +# has only 3.4 +pip3 install --user sphinxcontrib-bibtex==0.4.2 pip3 install --user cpp-coveralls ./travis/docker.sh |
