diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-05-01 15:14:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-01 15:14:05 +0200 |
commit | 0f19dae081e6678902826b195e0d3857c5b4c2b3 (patch) | |
tree | bb3ec256fb0c1316afcf648fc9de51a4e3312771 /.travis.yml | |
parent | e341a7f0e1d05573c3c6ad39cc7916bb7dcf5777 (diff) | |
parent | 995665ec7300eac9d7e1215e9980bfbdffcf066b (diff) | |
download | numpy-0f19dae081e6678902826b195e0d3857c5b4c2b3.tar.gz |
Merge pull request #13132 from zerothi/linalg-order
BLD: Allow users to specify BLAS and LAPACK library link order
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 061d8de1a..f8d71aa8a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,6 +53,11 @@ matrix: - python: 3.6 env: - PYTHONOPTIMIZE=2 + - BLAS=None + - LAPACK=None + - ATLAS=None + - NPY_BLAS_ORDER=mkl,blis,openblas,atlas,accelerate,blas + - NPY_LAPACK_ORDER=MKL,OPENBLAS,ATLAS,ACCELERATE,LAPACK - USE_ASV=1 - python: 3.5 dist: trusty # remove after April 2019 |