Skip to content

Commit d931001

Browse files
Enable parallel write (#317)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d9c4a06 commit d931001

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.22
4+
5+
- Allow Sphinx explicitly to write in parallel.
6+
37
## 1.21.7
48

59
- Fixed a bug where if a class has an attribute and a constructor argument with the same name, the constructor argument

src/sphinx_autodoc_typehints/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def setup(app: Sphinx) -> dict[str, bool]:
798798
app.connect("autodoc-process-signature", process_signature)
799799
app.connect("autodoc-process-docstring", process_docstring)
800800
install_patches(app)
801-
return {"parallel_read_safe": True}
801+
return {"parallel_read_safe": True, "parallel_write_safe": True}
802802

803803

804804
__all__ = [

0 commit comments

Comments
 (0)