From 3fe1e5a6252a601add4bff97bd8fc3545b9a407b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 22 Feb 2018 23:38:20 +0100 Subject: [PATCH] Use python 3.6 to build docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It fixes SNI issues. Signed-off-by: Michal Čihař --- .travis.yml | 1 + test/ci-install-docs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 57abbb46f7..cfe4ff7aa3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,7 @@ env: - TESTSUITE_URL=http://127.0.0.1:8000 install: + - if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then source ~/virtualenv/python3.6/bin/activate ; fi - ./test/ci-install-$CI_MODE - if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then case "$TRAVIS_PHP_VERSION" in hhvm*) ;; *) phpenv config-add test/php-noprofile.ini ;; esac ; fi diff --git a/test/ci-install-docs b/test/ci-install-docs index c5d4fa6ea2..a823b967ea 100755 --- a/test/ci-install-docs +++ b/test/ci-install-docs @@ -1,5 +1,5 @@ #!/bin/sh -# We use 1.5 to be able to deal with gzip only sites in linkcheck (such as tcpdf.org) +# Install deps for building documentation -pip install --user 'Sphinx' 'requests[security]' +pip install 'Sphinx'