Skip to content

Commit

Permalink
Merge pull request #18 from MDAnalysis/issue/17
Browse files Browse the repository at this point in the history
fixed #17 (travis build failure due to missing libgfortran.so.1)

This is a workaround: use conda *without MKL* and upgrade to the latest numpy (1.9.2) and scipy (0.16.0); once conda fixes their dependencies it should work fine again. See the log message for links to related issues at travis and conda.
  • Loading branch information
orbeckst committed Sep 23, 2015
2 parents 031e707 + 41b8d96 commit 42aa9d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ addons:
apt:
packages:
- gfortran
- libgfortran3
- liblapack-dev
- libatlas-dev
before_install:
Expand All @@ -16,7 +17,7 @@ before_install:
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
install:
- conda create --yes -q -n pyenv mkl python=$TRAVIS_PYTHON_VERSION numpy=1.9.1 scipy=0.14.0 nose=1.3.7 six sphinx=1.3
- conda create --yes -q -n pyenv python=$TRAVIS_PYTHON_VERSION numpy=1.9.2 scipy=0.16.0 nose=1.3.7 six sphinx=1.3
- source activate pyenv
- case "$TRAVIS_PYTHON_VERSION" in 2.*) SPECIAL_PACKAGES="mock";; 3.*) SPECIAL_PACKAGES="";; esac
- pip install coveralls $SPECIAL_PACKAGES
Expand Down

0 comments on commit 42aa9d4

Please sign in to comment.