From dd6261491825087e5577d3fdc7444bdbfc3e1924 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Wed, 6 Mar 2019 16:10:26 -0500 Subject: Travis (#4) * add cython to travis * add blas to travis install * fix blas dependency * trying with the atlas version of blas * add lapack too * try with lapacke * attempt to get lapack info * use correct asserts and lower threshold * decrease precision for seed test * add python 2.7 too * add travis status to readme --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index b871374..fe6c8a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,19 @@ language: python python: - "3.6" + - "2.7" env: - CC="gcc" +before_install: + - sudo apt-get update + - sudo apt-get install -y libatlas-base-dev liblapack-dev liblapacke-dev + install: - pip install --upgrade pip - pip install -r requirements.txt - - pip install nose + - pip install nose Cython - python setup.py build_ext --inplace script: -- cgit v1.2.3