From 7016132eda28d9920b78a981a86289ee76535421 Mon Sep 17 00:00:00 2001 From: Tyler Reddy Date: Wed, 21 Aug 2019 16:35:40 -0600 Subject: [PATCH] MAINT: bump OpenBLAS to v0.3.7 stable * build NumPy wheels with latest stable release of OpenBLAS, v0.3.7, instead of using a commit hash on the development branch prior to that release --- .appveyor.yml | 4 ++-- env_vars.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 9e77597..035fa86 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -12,8 +12,8 @@ environment: global: MINGW_32: C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin MINGW_64: C:\mingw-w64\x86_64-6.3.0-posix-seh-rt_v5-rev1\mingw64\bin - OPENBLAS_32: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.5-274-g6a8b4269-win32-gcc_7_1_0.zip" - OPENBLAS_64: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.5-274-g6a8b4269-win_amd64-gcc_7_1_0.zip" + OPENBLAS_32: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.7-win32-gcc_7_1_0.zip" + OPENBLAS_64: "https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com/openblas-v0.3.7-win_amd64-gcc_7_1_0.zip" CYTHON_BUILD_DEP: Cython TEST_MODE: fast APPVEYOR_SAVE_CACHE_ON_ERROR: true diff --git a/env_vars.sh b/env_vars.sh index de0a9dc..1ab836c 100644 --- a/env_vars.sh +++ b/env_vars.sh @@ -1,4 +1,4 @@ # Environment variables for build -OPENBLAS_VERSION="v0.3.5-274-g6a8b4269" +OPENBLAS_VERSION="v0.3.7" MACOSX_DEPLOYMENT_TARGET=10.9 CFLAGS="-std=c99 -fno-strict-aliasing"