File tree 5 files changed +6
-18
lines changed 5 files changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ install:
45
45
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then conda install --yes vtk; fi
46
46
- pip install python-coveralls
47
47
- pip install nose-cov
48
- - pip install mock
49
48
# Add tvtk (PIL is required by blockcanvas)
50
49
# Install mayavi (see https://github.com/enthought/mayavi/issues/271)
51
50
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then
@@ -56,8 +55,7 @@ install:
56
55
pip install https://github.com/dmsurti/mayavi/archive/4d4aaf315a29d6a86707dd95149e27d9ed2225bf.zip;
57
56
pip install -e git+https://github.com/enthought/ets.git#egg=ets;
58
57
fi
59
- - pip install -r requirements.txt # finish remaining requirements
60
- - python setup.py install
58
+ - pip install -e .
61
59
script :
62
60
- python -W once:FSL:UserWarning:nipype `which nosetests` --with-doctest --with-cov --cover-package nipype --cov-config .coveragerc --logging-level=DEBUG --verbosity=3
63
61
after_success :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies:
21
21
# Set up python environment
22
22
- pip install --upgrade pip
23
23
- pip install -e .
24
- - pip install matplotlib sphinx ipython boto coverage dipy mock
24
+ - pip install matplotlib sphinx ipython boto coverage dipy
25
25
# Add tvtk
26
26
- pip install http://effbot.org/downloads/Imaging-1.1.7.tar.gz
27
27
- pip install -e git+https://github.com/enthought/etsdevtools.git#egg=etsdevtools
Original file line number Diff line number Diff line change 24
24
25
25
git clone https://github.com/nipy/nipype.git
26
26
27
- Check out the list of nipype's `current dependencies <https://github.com/nipy /nipype/blob/master/requirements.txt >`_.
27
+ Check out the list of nipype's `current dependencies <https://github.com/shoshber /nipype/blob/master/nipype/info.py#L105 >`_.
28
28
29
29
Install
30
30
-------
@@ -61,8 +61,7 @@ If you downloaded the source distribution named something
61
61
like ``nipype-x.y.tar.gz ``, then unpack the tarball, change into the
62
62
``nipype-x.y `` directory and install nipype using::
63
63
64
- pip install -r requirements.txt
65
- python setup.py install
64
+ pip install -e .
66
65
67
66
**Note: ** Depending on permissions you may need to use ``sudo ``.
68
67
Original file line number Diff line number Diff line change @@ -142,5 +142,6 @@ def get_nipype_gitversion():
142
142
"future>=%s" % FUTURE_MIN_VERSION ,
143
143
"simplejson>=%s" % SIMPLEJSON_MIN_VERSION ,
144
144
"prov>=%s" % PROV_MIN_VERSION ,
145
+ "mock" ,
145
146
"xvfbwrapper" ]
146
147
STATUS = 'stable'
Original file line number Diff line number Diff line change 1
- numpy >= 1.6.2
2
- scipy >= 0.11
3
- networkx >= 1.7
4
- traits >= 4.3
5
- python-dateutil >= 1.5
6
- nibabel >= 2.0.1
7
- nose >= 1.2
8
- future == 0.15.2
9
- simplejson >= 3.8.0
10
- prov >= 1.4.0
11
- xvfbwrapper
1
+ Nipype no longer maintains this file. Use ``pip install \-e .`` instead.
You can’t perform that action at this time.
0 commit comments