Skip to content

Commit a66807e

Browse files
committed
éadd macosxé
1 parent 47477c5 commit a66807e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.travis.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
language: python
2+
os:
3+
- linux
4+
- osx
25
python:
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"
811
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
1116
# command to install dependencies
1217
install:
1318
- pip install -r requirements.txt

0 commit comments

Comments
 (0)