From ec832608b8ebfdffa25079dd5c7a080613ff1d57 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 cb21ed20397b2fe..aa615e6bf3141fb 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 1c76ae13b404c7dec0d4b717310960cf2a6a727e Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Mon, 28 Mar 2022 12:42:05 -0400 Subject: [PATCH 2/2] Add NEWS blurb --- .../next/Documentation/2022-03-28-12-36-17.bpo-47138.TbLXgV.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Documentation/2022-03-28-12-36-17.bpo-47138.TbLXgV.rst diff --git a/Misc/NEWS.d/next/Documentation/2022-03-28-12-36-17.bpo-47138.TbLXgV.rst b/Misc/NEWS.d/next/Documentation/2022-03-28-12-36-17.bpo-47138.TbLXgV.rst new file mode 100644 index 000000000000000..9dde4de2dc8b546 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-03-28-12-36-17.bpo-47138.TbLXgV.rst @@ -0,0 +1 @@ +Pin Jinja to a version compatible with Sphinx version 2.4.4.