File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed
Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ environment:
1818 # disable threaded builds on Python 3.5+ when using numpy's distutils
1919 # (https://github.com/numpy/numpy/issues/7607)
2020 BUILD_GLOBAL_OPTIONS : build -j1
21- BUILD_ENV : wheel==0.29.0 pip==9.0.1 numpy==1.9.3 sphinx==1.8.2
21+ BUILD_ENV : wheel==0.29.0 pip==9.0.1 numpy==1.9.3 -r requirements-doc.txt
2222 # SIP 4.19.4+ with PyQt5==5.9.1+ segfault our tests (GH-2756)
2323 TEST_ENV : sip==4.19.6 PyQt5==5.9.2 numpy~=1.14.0 scipy~=1.0.0 scikit-learn pandas==0.21.1
2424
Original file line number Diff line number Diff line change 11pylint
22radon
33# for build_htmlhelp command
4- sphinx >= 1.5
4+ sphinx >= 1.5
5+ recommonmark
Original file line number Diff line number Diff line change 11docutils
22numpydoc
33Sphinx>=1.3
4+ recommonmark
45PyQt5
Original file line number Diff line number Diff line change 1717
1818
1919try :
20+ # need sphinx and recommonmark for build_htmlhelp command
2021 from sphinx .setup_command import BuildDoc
22+ # pylint: disable=unused-import
23+ import recommonmark
2124 have_sphinx = True
2225except ImportError :
2326 have_sphinx = False
You can’t perform that action at this time.
0 commit comments