File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 11language : python
2+ os :
3+ - linux
4+ - osx
25python :
36 - " 2.7"
47 - " 3.4"
58 # does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
69 # maintainers to fix their pypy-dev package.
710 # - "pypy"
811before_install :
9- - sudo apt-get update -q
10- - sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev # gfortran
12+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get update -q ; fi
13+ - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; sudo apt-get install libblas-dev liblapack-dev libatlas-base-dev; fi # gfortran
14+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
15+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python; fi
1116# command to install dependencies
1217install :
1318 - pip install -r requirements.txt
You can’t perform that action at this time.
0 commit comments