diff options
author | Akira Yokosawa <[email protected]> | 2022-03-29 15:07:02 +0900 |
---|---|---|
committer | Jonathan Corbet <[email protected]> | 2022-03-30 13:44:54 -0600 |
commit | be78837ca3c88eebd405103a7a2ce891c466b0db (patch) | |
tree | d4cf7bd64912dec7a357d54c5326e13f02c66926 | |
parent | 9df072c73b9891e44f7f59f3b7c8f852b4485e80 (diff) |
docs: sphinx/requirements: Limit jinja2<3.1
jinja2 release 3.1.0 (March 24, 2022) broke Sphinx<4.0.
This looks like the result of deprecating Python 3.6.
It has been tested against Sphinx 4.3.0 and later.
Setting an upper limit of <3.1 to junja2 can unbreak Sphinx<4.0
including Sphinx 2.4.4.
Signed-off-by: Akira Yokosawa <[email protected]>
Cc: Mauro Carvalho Chehab <[email protected]>
Cc: [email protected] # v5.15+
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jonathan Corbet <[email protected]>
-rw-r--r-- | Documentation/sphinx/requirements.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/sphinx/requirements.txt b/Documentation/sphinx/requirements.txt index 9a35f50798a6..2c573541ab71 100644 --- a/Documentation/sphinx/requirements.txt +++ b/Documentation/sphinx/requirements.txt @@ -1,2 +1,4 @@ +# jinja2>=3.1 is not compatible with Sphinx<4.0 +jinja2<3.1 sphinx_rtd_theme Sphinx==2.4.4 |