Skip to content

Commit

Permalink
travis.yml: install Eigen for Ceygen
Browse files Browse the repository at this point in the history
  • Loading branch information
strohel committed Jul 25, 2013
1 parent 474ed00 commit c1a8b64
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 @@ -11,7 +11,8 @@ env:
- USE_CYTHON=no

install:
- if test ${USE_CYTHON} = yes; then pip install cython --use-mirrors; pip install ceygen --use-mirrors; fi
# Ceygen needs system Eigen installed
- if test ${USE_CYTHON} = yes; then pip install cython --use-mirrors; sudo apt-get install -qq libeigen3-dev; pip install ceygen --use-mirrors; fi
# Python 3 environment on travis doesn't see python3-numpy package, install manually
- if test ${TRAVIS_PYTHON_VERSION%%.*} = 3; then pip install numpy --use-mirrors; fi

Expand Down

0 comments on commit c1a8b64

Please sign in to comment.