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 1
1
language : python
2
+ os :
3
+ - linux
4
+ - osx
2
5
python :
3
6
- " 2.7"
4
7
- " 3.4"
5
8
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
6
9
# maintainers to fix their pypy-dev package.
7
10
# - "pypy"
8
11
before_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
11
16
# command to install dependencies
12
17
install :
13
18
- pip install -r requirements.txt
You can’t perform that action at this time.
0 commit comments