Skip to content

Commit

Permalink
Declared the extension safe for parallel reads
Browse files Browse the repository at this point in the history
Fixes #9.
  • Loading branch information
agronholm committed Mar 25, 2017
1 parent 6946211 commit c4657bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

* Fixed compatibility with Python 3.6 and 3.5.3
* Fixed ``NameError`` when processing signatures of wrapped functions with type hints
* Fixed Sphinx warning about parallel reads
* Added a test suite (thanks Manuel Krebber)


Expand Down
1 change: 1 addition & 0 deletions sphinx_autodoc_typehints.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,4 @@ def process_docstring(app, what, name, obj, options, lines):
def setup(app):
app.connect('autodoc-process-signature', process_signature)
app.connect('autodoc-process-docstring', process_docstring)
return dict(parallel_read_safe=True)

0 comments on commit c4657bc

Please sign in to comment.