From 993889419e89dee8f406d623d48659fc859124a7 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 25 Mar 2022 10:05:56 +0100 Subject: [PATCH 1/2] bpo-47138: Fix documentation build by pinning Jinja version to 3.0.3 --- Doc/requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/requirements.txt b/Doc/requirements.txt index 1b75aed035ac9b1..cf659a0fbac2ec7 100644 --- a/Doc/requirements.txt +++ b/Doc/requirements.txt @@ -8,6 +8,8 @@ sphinx==2.4.4 # version 2.4.4. It can be removed after bumping Sphinx version to at # least 3.5.4. docutils==0.17.1 +# Jinja version is pinned to a version compatible with Sphinx version 2.4.4. +jinja2==3.0.3 blurb From e5779cb23e73799f5ad4c057b48cb7195d585ac6 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Mon, 28 Mar 2022 12:41:43 -0400 Subject: [PATCH 2/2] Add NEWS blurb --- .../next/Documentation/2022-03-28-12-32-17.bpo-47138.TbLXgV.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Documentation/2022-03-28-12-32-17.bpo-47138.TbLXgV.rst diff --git a/Misc/NEWS.d/next/Documentation/2022-03-28-12-32-17.bpo-47138.TbLXgV.rst b/Misc/NEWS.d/next/Documentation/2022-03-28-12-32-17.bpo-47138.TbLXgV.rst new file mode 100644 index 000000000000000..9dde4de2dc8b546 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-03-28-12-32-17.bpo-47138.TbLXgV.rst @@ -0,0 +1 @@ +Pin Jinja to a version compatible with Sphinx version 2.4.4.