File tree 2 files changed +9
-7
lines changed
2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -15,3 +15,4 @@ echo $ENABLE_CONTRIB > contrib.enabled
15
15
echo $ENABLE_HEADLESS > headless.enabled
16
16
set -x
17
17
build_wheel $REPO_DIR $PLAT
18
+ rm wheelhouse/numpy*
Original file line number Diff line number Diff line change @@ -26,13 +26,6 @@ function bdist_wheel_cmd {
26
26
if [ -n " $USE_CCACHE " -a -z " $BREW_BOOTSTRAP_MODE " ]; then ccache -s; fi
27
27
}
28
28
29
- if [ -n " $IS_OSX " ]; then
30
- brew install lapack
31
- else
32
- yum install -y atlas-devel blas-devel lapack-devel
33
- cp /usr/include/lapacke/lapacke* .h /usr/include/
34
- fi
35
-
36
29
if [ -n " $IS_OSX " ]; then
37
30
echo " > OSX environment "
38
31
export MAKEFLAGS=" -j$( sysctl -n hw.ncpu) "
@@ -99,6 +92,14 @@ function pre_build {
99
92
echo " Starting pre-build"
100
93
set -e -o pipefail
101
94
95
+ if [ -n " $IS_OSX " ]; then
96
+ brew install lapack
97
+ else
98
+ yum install -y lapack-devel openblas-devel
99
+ cp /usr/include/lapacke/lapacke* .h /usr/include/
100
+ curl https://raw.githubusercontent.com/xianyi/OpenBLAS/v0.3.3/cblas.h -o /usr/include/cblas.h
101
+ fi
102
+
102
103
if [ -n " $IS_OSX " ]; then
103
104
echo " Running for OSX"
104
105
You can’t perform that action at this time.
0 commit comments