diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-05-22 19:26:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 11:26:27 -0500 |
commit | 78593a1059f0a9c04385f97b2c1caa221efefa5f (patch) | |
tree | 8dd408a53518726d2c392edeb4c6d1e62869278b /.travis.yml | |
parent | dabf31c74f6f3153ef4e7c72ad969c37f8652c8a (diff) | |
download | numpy-78593a1059f0a9c04385f97b2c1caa221efefa5f.tar.gz |
BUILD: Remove Accelerate support (#15759)
Remove support for Apple Accelerate, since it is buggy. A build error should
occur on most or all setups if linked against Accelerate. Test or import failures
should occur on setups where Accelerate is picked up dynamically.
Co-authored-by: Warren Weckesser <warren.weckesser@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index e019495fb..aa01457fb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,8 +71,8 @@ jobs: - BLAS=None - LAPACK=None - ATLAS=None - - NPY_BLAS_ORDER=mkl,blis,openblas,atlas,accelerate,blas - - NPY_LAPACK_ORDER=MKL,OPENBLAS,ATLAS,ACCELERATE,LAPACK + - NPY_BLAS_ORDER=mkl,blis,openblas,atlas,blas + - NPY_LAPACK_ORDER=MKL,OPENBLAS,ATLAS,LAPACK - USE_ASV=1 - python: 3.7 |