diff options
Diffstat (limited to 'sphinx/directives/patches.py')
-rw-r--r-- | sphinx/directives/patches.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 041bee360..8b14ba2b0 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -58,3 +58,9 @@ class Meta(html.Meta): def setup(app): directives.register_directive('figure', Figure) directives.register_directive('meta', Meta) + + return { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } |