From 280df78db1b39ec7f82e7b3f9285a5508da2c10c Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 25 Mar 2022 10:05:56 +0100 Subject: [PATCH 1/3] 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 95d320f4cb1f33..c7043d9c69ca9f 100644 --- a/Doc/requirements.txt +++ b/Doc/requirements.txt @@ -8,6 +8,8 @@ sphinx==3.2.1 # version 3.2.1. 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 f2038d4b9631ebf4294ef328cdb64ecff1156e16 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 28 Mar 2022 17:29:51 +0300 Subject: [PATCH 2/3] Update comment to match Sphinx version Co-authored-by: m-aciek --- Doc/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/requirements.txt b/Doc/requirements.txt index c7043d9c69ca9f..793df32ecf65f6 100644 --- a/Doc/requirements.txt +++ b/Doc/requirements.txt @@ -8,7 +8,7 @@ sphinx==3.2.1 # version 3.2.1. 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. +# Jinja version is pinned to a version compatible with Sphinx version 3.2.1. jinja2==3.0.3 blurb From 71bd3a902c8ea8b5cd4df8ecb345898c980429bf Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Mon, 28 Mar 2022 12:41:13 -0400 Subject: [PATCH 3/3] Add NEWS blurb --- .../next/Documentation/2022-03-28-12-29-42.bpo-47138.2B4N-k.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Documentation/2022-03-28-12-29-42.bpo-47138.2B4N-k.rst diff --git a/Misc/NEWS.d/next/Documentation/2022-03-28-12-29-42.bpo-47138.2B4N-k.rst b/Misc/NEWS.d/next/Documentation/2022-03-28-12-29-42.bpo-47138.2B4N-k.rst new file mode 100644 index 00000000000000..e15148b73b23b4 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2022-03-28-12-29-42.bpo-47138.2B4N-k.rst @@ -0,0 +1 @@ +Pin Jinja to a version compatible with Sphinx version 3.2.1.