File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,8 @@ script:
118
118
COVER_ARGS="--with-coverage --cover-package nibabel";
119
119
fi
120
120
if [ "$DOC_DOC_TEST" == "1" ]; then
121
- pip install sphinx numpydoc texext;
122
121
cd ../doc;
122
+ pip install -r ../doc-requirements.txt
123
123
make html;
124
124
make doctest;
125
125
else
Original file line number Diff line number Diff line change
1
+ # Requirements for building docs
2
+ -r requirements.txt
3
+ sphinx
4
+ numpydoc
5
+ texext
6
+ matplotlib>=1.3
Original file line number Diff line number Diff line change
1
+ #####################
2
+ Nibabel documentation
3
+ #####################
4
+
5
+ To build the documentation, change to the root directory (containing
6
+ ``setup.py ``) and run::
7
+
8
+ pip install -r doc-requirements.txt
9
+ make html
You can’t perform that action at this time.
0 commit comments