commit | b5c5bbe478ece57d76e6701fec3021384feb6dd2 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Wed Sep 20 10:14:56 2017 -0400 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Wed Sep 20 22:14:56 2017 +0800 |
tree | c786463ff2af7b926c478aaff711a392ca3ce3f3 | |
parent | ce4d0845f544f8a95600fd8888bf924cd25e2e85 [diff] |
Mark our custom sphinx extension as parallel safe (#3935)
diff --git a/docs/cryptography-docs.py b/docs/cryptography-docs.py index 56baf12..238dd69 100644 --- a/docs/cryptography-docs.py +++ b/docs/cryptography-docs.py
@@ -59,3 +59,7 @@ latex=(latex_visit_hazmat_node, depart_hazmat_node), ) app.add_directive("hazmat", HazmatDirective) + + return { + "parallel_read_safe": True, + }