diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-02-15 22:36:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-15 22:36:08 (GMT) |
commit | 91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c (patch) | |
tree | cd4a71bbac2f723979bf5da1eab724d20a756f0a /Doc/Makefile | |
parent | 532519770dea5d353f0b0d718c8881a15c7542df (diff) | |
download | cpython-91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c.zip cpython-91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c.tar.gz cpython-91b0e7d0ca7c59df28f6a6fc1e8eb86a3925b76c.tar.bz2 |
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 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 6e1c183..eb62df5 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 = |