8000 Shot in the dark fix for broken 3.10 render (#133) · python/docsbuild-scripts@681fd2c · GitHub
[go: up one dir, main page]

Skip to content

Commit 681fd2c

Browse files
authored
Shot in the dark fix for broken 3.10 render (#133)
* Shot in the dark fix for broken 3.10 render
1 parent 258f312 commit 681fd2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def requirements(self):
108108
if version_to_tuple(self.sphinx_version) < (4, 5):
109109
# see https://github.com/python/cpython/issues/91294
110110
reqs += ["jinja2<3.1"]
111-
if version_to_tuple(self.sphinx_version) <= (3, 2, 1):
111+
if version_to_tuple(self.sphinx_version) < (3, 5, 4):
112112
# see https://github.com/python/cpython/issues/91483
113113
reqs += ["docutils<=0.17.1"]
114114
return reqs

0 commit comments

Comments
 (0)
0