From f5b8a847c91c046350db4597abb373dddca9aed1 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 3 Oct 2017 11:46:30 -0400 Subject: [PATCH] Mark the extension as safe for parallel reading Contributed by Alex Gaynor https://bitbucket.org/dhellmann/sphinxcontrib-spelling/pull-requests/8 Signed-off-by: Doug Hellmann --- sphinxcontrib/spelling/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinxcontrib/spelling/__init__.py b/sphinxcontrib/spelling/__init__.py index 02e63faf..14753012 100644 --- a/sphinxcontrib/spelling/__init__.py +++ b/sphinxcontrib/spelling/__init__.py @@ -37,4 +37,4 @@ def setup(app): app.add_config_value('spelling_ignore_importable_modules', True, 'env') # Add any user-defined filter classes app.add_config_value('spelling_filters', [], 'env') - return + return {"parallel_read_safe": True}