[Python-checkins] bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py (#12385)

Julien Palard webhook-mailer at python.org
Mon Mar 18 06:48:06 EDT 2019


https://github.com/python/cpython/commit/09a9f1799c8c58f573c50cb2d526422436b8658b
commit: 09a9f1799c8c58f573c50cb2d526422436b8658b
branch: master
author: Stéphane Wirtel <stephane at wirtel.be>
committer: Julien Palard <julien at palard.fr>
date: 2019-03-18T11:47:55+01:00
summary:

bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py (#12385)

* bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py

* Add the blurb entry

files:
A Misc/NEWS.d/next/Documentation/2019-03-17-20-01-41.bpo-36329.L5dJPD.rst
M Doc/Makefile

diff --git a/Doc/Makefile b/Doc/Makefile
index 4b85e9eb6058..53877e613290 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -174,7 +174,7 @@ check:
 	$(PYTHON) tools/rstlint.py -i tools -i $(VENVDIR) -i README.rst
 
 serve:
-	../Tools/scripts/serve.py build/html
+	$(PYTHON) ../Tools/scripts/serve.py build/html
 
 # Targets for daily automated doc build
 # By default, Sphinx only rebuilds pages where the page content has changed.
diff --git a/Misc/NEWS.d/next/Documentation/2019-03-17-20-01-41.bpo-36329.L5dJPD.rst b/Misc/NEWS.d/next/Documentation/2019-03-17-20-01-41.bpo-36329.L5dJPD.rst
new file mode 100644
index 000000000000..94e5884cc9ad
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2019-03-17-20-01-41.bpo-36329.L5dJPD.rst
@@ -0,0 +1,3 @@
+Declare the path of the Python binary for the usage of
+``Tools/scripts/serve.py`` when executing ``make -C Doc/ serve``.
+Contributed by Stéphane Wirtel



More information about the Python-checkins mailing list