summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-02-15 23:36:08 +0100
committerGitHub <noreply@github.com>2017-02-15 23:36:08 +0100
commit91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c (patch)
treecd4a71bbac2f723979bf5da1eab724d20a756f0a /.travis.yml
parent532519770dea5d353f0b0d718c8881a15c7542df (diff)
downloadcpython-git-91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c.tar.gz
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.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
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