From 21c6b46094ba0dc1f6f7da638692eb102efec55e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Wirtel?= Date: Sun, 17 Mar 2019 19:59:39 +0100 Subject: [PATCH 1/2] bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py --- Doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/Makefile b/Doc/Makefile index 4b85e9eb605803..53877e61329089 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. From 612d138cc76ff72b40750e5bc4f583a1fc88e8d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Wirtel?= Date: Sun, 17 Mar 2019 20:02:36 +0100 Subject: [PATCH 2/2] Add the blurb entry --- .../Documentation/2019-03-17-20-01-41.bpo-36329.L5dJPD.rst | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Misc/NEWS.d/next/Documentation/2019-03-17-20-01-41.bpo-36329.L5dJPD.rst 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 00000000000000..94e5884cc9ade8 --- /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