aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-04-09 07:30:46 -0400
committerJack Lloyd <[email protected]>2020-04-09 07:30:46 -0400
commit18e1e5f64ba42c9a8e5e3471155882f132362dfe (patch)
treef2f77e55bf082a3e3c06c31e1fb416800deb75af /src/scripts
parent80b1bd1b53943dfdb47a345ada9af708195968b0 (diff)
Blacklist only Sphinx 3.0
Bug has already been fixed upstream so future 3.0.1 and 3.1 will work. Current regex only grabs the major/minor versions not the patch, so this leaves parallel builds still disabled for future 3.0.1
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/build_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/build_docs.py b/src/scripts/build_docs.py
index 1eb523e50..6eb9b656c 100755
--- a/src/scripts/build_docs.py
+++ b/src/scripts/build_docs.py
@@ -150,7 +150,7 @@ def sphinx_supports_concurrency():
if version < StrictVersion('1.4'):
# not supported
return False
- if version >= StrictVersion('3.0'):
+ if version == StrictVersion('3.0'):
# Bug in Sphinx 3.0 https://github.com/sphinx-doc/sphinx/issues/7438
return False
return True