From c33b67d4831b2e0ad94b5392bb7dfd30546026c2 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 25 Mar 2022 11:05:58 +0100 Subject: [PATCH 1/2] bpo-47138: Fix documentation build by pinning Jinja version to 3.0.3 --- Doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/Makefile b/Doc/Makefile index 1393bcb52500e46..1b8cbfa479e50f6 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -127,7 +127,7 @@ clean: venv: $(PYTHON) -m venv $(VENVDIR) - $(VENVDIR)/bin/python3 -m pip install -U Sphinx==2.3.1 blurb docutils==0.17.1 + $(VENVDIR)/bin/python3 -m pip install -U Sphinx==2.3.1 blurb docutils==0.17.1 Jinja2==3.0.3 @echo "The venv has been created in the $(VENVDIR) directory" dist: From 7c7c62592e175408555bcdad08bcd8afe1ddaf67 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Mon, 28 Mar 2022 12:43:45 -0400 Subject: [PATCH 2/2] Add NEWS blurb --- .../next/Documentation/2022-03-28-12-39-20.bpo-47138.TEZRwC.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Documentation/2022-03-28-12-39-20.bpo-47138.TEZRwC.rst diff --git a/Misc/NEWS.d/next/Documentation/2022-03-28-12-39-20.bpo-47138.TEZRwC.rst b/Misc/NEWS.d/next/Documentation/2022-03-28-12-39-20.bpo-47138.TEZRwC.rst new file mode 100644 index 000000000000000..aa3ed79d5e29c78 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-03-28-12-39-20.bpo-47138.TEZRwC.rst @@ -0,0 +1 @@ +Pin Jinja to a version compatible with Sphinx version 2.3.1.