From: Victor Stinner Date: Wed, 15 Feb 2017 22:36:08 +0000 (+0100) Subject: Doc/Makefile: set PYTHON to python3 (#124) X-Git-Tag: v3.7.0a1~1334 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c;p=python Doc/Makefile: set PYTHON to python3 (#124) rstlint.py run by "make check" doesn't support Python 2. "make venv" runs "$(PYTHON) -m venv", whereas Python 2 doens't provide the venv module: it's a module of Python 3 standard library. --- diff --git a/.travis.yml b/.travis.yml index 9cb227230f..27b63c6c08 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ matrix: - TESTING=docs before_script: - cd Doc - - make venv PYTHON=python3 + - make venv script: - make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q" - os: linux diff --git a/Doc/Makefile b/Doc/Makefile index 6e1c183040..eb62df5b87 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -4,7 +4,7 @@ # # You can set these variables from the command line. -PYTHON = python +PYTHON = python3 SPHINXBUILD = sphinx-build PAPER = SOURCES =