diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-03-06 16:10:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-06 16:10:26 -0500 |
| commit | dd6261491825087e5577d3fdc7444bdbfc3e1924 (patch) | |
| tree | f78b50001256879b4c98b82f281d7f3474c0d538 /.travis.yml | |
| parent | travis (diff) | |
| download | pygensvm-dd6261491825087e5577d3fdc7444bdbfc3e1924.tar.gz pygensvm-dd6261491825087e5577d3fdc7444bdbfc3e1924.zip | |
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
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
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: |
