From cfe54ea962f568925928cec3b730faaace5efea8 Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Wed, 28 Mar 2018 10:46:39 -0700 Subject: [PATCH] Return metadata indicating that this is parallel_read_safe --- python_docs_theme/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python_docs_theme/__init__.py b/python_docs_theme/__init__.py index ec776b7..407d62a 100644 --- a/python_docs_theme/__init__.py +++ b/python_docs_theme/__init__.py @@ -5,3 +5,8 @@ def setup(app): current_dir = os.path.abspath(os.path.dirname(__file__)) app.add_html_theme( 'python_docs_theme', current_dir) + + return { + 'parallel_read_safe': True, + 'parallel_write_safe': True, + }