We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a40c863 commit 27a9b88Copy full SHA for 27a9b88
.travis.install.sh
@@ -32,5 +32,5 @@ if [[ $RUN == nosetests ]]; then
32
python setup.py install
33
elif [[ $RUN == build_sphinx ]]; then
34
# documentation specific dependencies
35
- pip install sphinx
+ pip install 'sphinx >=1.1.3'
36
fi
setup.py
@@ -24,7 +24,7 @@
24
try:
25
import sphinx
26
from sphinx.setup_command import BuildDoc
27
- if sphinx.__version__ == '1.1.2':
+ if sphinx.__version__ >= '1.1.3':
28
# Sphinx 1.1.2 is buggy and building bpython with that version fails.
29
# See #241.
30
using_sphinx = False
0 commit comments