summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorEric Holscher <eric@ericholscher.com>2021-04-08 14:42:29 -0700
committerEric Holscher <eric@ericholscher.com>2021-04-09 08:33:06 -0700
commit025f26cd5dba57dfb6a8a036708da120001c6768 (patch)
tree8397ae565ecd9580afe2c61eca167e0c3b2a7b16 /setup.py
parent53d3c94d108c1b1b5c157eeac7bcd25532fe8e2f (diff)
downloadsphinx-git-025f26cd5dba57dfb6a8a036708da120001c6768.tar.gz
Pin Sphinx 3.x to docutils <0.17
This will address the issues that the latest docutils release caused. I think thi si a good practice in general to make sure we have a defined range of docutils versions, given that they might change in the future. Having this defined will mean that 3.x versions of Sphinx will always work, even when docutils has advanced with additional backwards incompatible features. Refs #9065 #9063 #9061 #9051
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index dfc80578f..d528f738b 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ install_requires = [
'sphinxcontrib-qthelp',
'Jinja2>=2.3',
'Pygments>=2.0',
- 'docutils>=0.12',
+ 'docutils>=0.12,<0.17',
'snowballstemmer>=1.1',
'babel>=1.3',
'alabaster>=0.7,<0.8',