From cfc79ded73ccb9859f0420cbd61fd6c3eb6cba2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 14 Dec 2017 12:49:29 +0100 Subject: [PATCH] Try to use python 3 for building docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It has SNI support out of the box without need to handle some deps. Signed-off-by: Michal Čihař --- test/ci-install-docs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ci-install-docs b/test/ci-install-docs index 2bc149481a..72cdd7d40c 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>=2.4.1' +pip3 install --user 'Sphinx'