File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -17,5 +17,5 @@ if [[ $RUN == nosetests ]]; then
1717 python setup.py install
1818elif [[ $RUN == build_sphinx ]]; then
1919 # documentation specific dependencies
20- pip install ' sphinx >=1.1.3 '
20+ pip install ' sphinx >=1.5 '
2121fi
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 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"
3029except ImportError :
3130 using_sphinx = False
3231
You can’t perform that action at this time.
0 commit comments