File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 2828before_install :
2929 # Install gfortran for testing slycot; use apt-get instead of conda in
3030 # order to include the proper CXXABI dependency (updated in GCC 4.9)
31- # Also need to include liblapack here, to make sure paths are right
3231 - if [[ "$SLYCOT" != "" ]]; then
3332 sudo apt-get update -qq;
34- sudo apt-get install gfortran liblapack-dev ;
33+ sudo apt-get install gfortran;
3534 fi
3635 # Install display manager to allow testing of plotting functions
3736 - export DISPLAY=:99.0
@@ -51,6 +50,10 @@ before_install:
5150 - conda info -a
5251 - conda create -q -n test-environment python="$TRAVIS_PYTHON_VERSION" pip coverage
5352 - source activate test-environment
53+ # Install openblas if slycot is being used
54+ - if [[ "$SLYCOT" != "" ]]; then
55+ conda install openblas;
56+ fi
5457 # Make sure to look in the right place for python libraries (for slycot)
5558 - export LIBRARY_PATH="$HOME/miniconda/envs/test-environment/lib"
5659 # coveralls not in conda repos => install via pip instead
You can’t perform that action at this time.
0 commit comments