From 27d4fad0f5eb42d770bb13e0a02a48bfa5b9395e Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sat, 20 Jul 2024 11:13:43 -0500 Subject: [PATCH] This extension is safe to run in parallel A warning about this was printed during `make html` locally. --- docs/_ext/custom_autodoc.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/_ext/custom_autodoc.py b/docs/_ext/custom_autodoc.py index 4242a9d..74a43c0 100644 --- a/docs/_ext/custom_autodoc.py +++ b/docs/_ext/custom_autodoc.py @@ -40,3 +40,8 @@ def setup(app: Sphinx) -> None: "autodoc-process-docstring", remove_first_line_in_module_docstring, ) + + return { + "parallel_read_safe": True, + "parallel_write_safe": True, + }