Skip to content

Commit f219021

Browse files
revert travis/appveyor scripts to install dependencies separately
1 parent c5ecdb7 commit f219021

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ install:
2828
travis_retry sudo apt-get update -qq;
2929
travis_retry sudo apt-get install mencoder;
3030
fi;
31-
- pip install -q coverage coveralls nose-timer nibabel flake8
32-
- pip install .[save_movie]
31+
- pip install -q coverage coveralls nose-timer nibabel flake8 imageio
32+
- python setup.py build
33+
- python setup.py install
3334
- SRC_DIR=$(pwd)
3435

3536
before_script:

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ install:
2323

2424
# Install the dependencies of the project.
2525
- "conda install --yes --quiet ipython==1.1.0 numpy scipy mayavi matplotlib nose imaging"
26-
- "pip install -q nose-timer"
27-
- "pip install -e .[save_movie]"
26+
- "pip install -q nose-timer nibabel imageio"
27+
- "python setup.py develop"
2828
- "SET SUBJECTS_DIR=%CD%\\subjects"
2929

3030
build: false # Not a C# project, build stuff at the test step instead.

0 commit comments

Comments
 (0)