Skip to content

Commit 27a9b88

Browse files
committed
Simply require Sphinx >= 1.1.3
1 parent a40c863 commit 27a9b88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ if [[ $RUN == nosetests ]]; then
3232
python setup.py install
3333
elif [[ $RUN == build_sphinx ]]; then
3434
# documentation specific dependencies
35-
pip install sphinx
35+
pip install 'sphinx >=1.1.3'
3636
fi

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
try:
2525
import sphinx
2626
from sphinx.setup_command import BuildDoc
27-
if sphinx.__version__ == '1.1.2':
27+
if sphinx.__version__ >= '1.1.3':
2828
# Sphinx 1.1.2 is buggy and building bpython with that version fails.
2929
# See #241.
3030
using_sphinx = False

0 commit comments

Comments
 (0)