We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b3a613 commit b4e2cb0Copy full SHA for b4e2cb0
src/sphinx_autodoc_typehints/__init__.py
@@ -1029,7 +1029,11 @@ def setup(app: Sphinx) -> dict[str, bool]:
1029
app.connect("autodoc-process-signature", process_signature)
1030
app.connect("autodoc-process-docstring", process_docstring)
1031
install_patches(app)
1032
- return {"parallel_read_safe": True, "parallel_write_safe": True}
+ return {
1033
+ "version": __version__,
1034
+ "parallel_read_safe": True,
1035
+ "parallel_write_safe": True,
1036
+ }
1037
1038
1039
__all__ = [
0 commit comments