We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a7e0b77 + 71f80e1 commit d418244Copy full SHA for d418244
CHANGES.txt
@@ -1,3 +1,6 @@
1
+v1.1.13
2
+ * Marked the extension as parallel safe (#46)
3
+
4
v1.1.12
5
* Fix bug in Internet Explorer (#33)
6
* Drop support for Python 3.4 (as lxml no longer supports it)
sphinx_tabs/tabs.py
@@ -341,3 +341,8 @@ def setup(app):
341
app.add_javascript(path)
342
app.connect('html-page-context', update_context)
343
app.connect('build-finished', copy_assets)
344
345
+ return {
346
+ 'parallel_read_safe': True,
347
+ 'parallel_write_safe': True,
348
+ }
0 commit comments