Skip to content

Commit 7c58ca0

Browse files
committed
Bump Sphinx version requirement
1 parent 4e11d5e commit 7c58ca0

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.travis.install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ if [[ $RUN == nosetests ]]; then
1717
python setup.py install
1818
elif [[ $RUN == build_sphinx ]]; then
1919
# documentation specific dependencies
20-
pip install 'sphinx >=1.1.3'
20+
pip install 'sphinx >=1.5'
2121
fi

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Dependencies
9999
* requests
100100
* curtsies >= 0.3.0
101101
* greenlet
102-
* Sphinx != 1.1.2 (optional, for the documentation)
102+
* Sphinx >= 1.5 (optional, for the documentation)
103103
* babel (optional, for internationalization)
104104
* watchdog (optional, for monitoring imported modules for changes)
105105
* jedi (optional, for experimental multiline completion)

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424
import sphinx
2525
from sphinx.setup_command import BuildDoc
2626

27-
# Sphinx 1.1.2 is buggy and building bpython with that version fails.
28-
# See #241.
29-
using_sphinx = sphinx.__version__ >= "1.1.3"
27+
# Sphinx 1.5 and newer support Python 3.6
28+
using_sphinx = sphinx.__version__ >= "1.5"
3029
except ImportError:
3130
using_sphinx = False
3231

0 commit comments

Comments
 (0)