Skip to content

Commit 5af65e4

Browse files
[spinx] Declare our extension as safe for parallel reading
1 parent f042cf5 commit 5af65e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/exts/pylint_features.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ def builder_inited(app: Sphinx | None) -> None:
4040
print_full_documentation(linter, stream, False)
4141

4242

43-
def setup(app: Sphinx) -> dict[str, str]:
43+
def setup(app: Sphinx) -> dict[str, str | bool]:
4444
app.connect("builder-inited", builder_inited)
45-
return {"version": sphinx.__display_version__}
45+
return {"version": sphinx.__display_version__, "parallel_read_safe": True}
4646

4747

4848
if __name__ == "__main__":

0 commit comments

Comments
 (0)