We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c06bef0 commit f175ab5Copy full SHA for f175ab5
.travis.yml
@@ -8,7 +8,7 @@ env:
8
- NP_TEST_DEP=1.17.3
9
- WHEELHOUSE_UPLOADER_USERNAME=travis-worker
10
# manylinux version to build (1, 2010 or 2014)
11
- - MB_ML_VER=2010
+ - MB_ML_VER=1
12
# Following generated with
13
# travis encrypt -r MacPython/netcdf4-python-wheels WHEELHOUSE_UPLOADER_SECRET=<the api key>
14
- secure:
config.sh
@@ -13,10 +13,9 @@ source h5py-wheels/config.sh
function build_libs {
build_hdf5
15
build_curl
16
-# only needed for MB_ML_VER=1
17
-# if [ -z "$IS_OSX" ]; then
18
-# export CFLAGS="-std=gnu99 -Wl,-strip-all"
19
-# fi
+ if [ -z "$IS_OSX" ] && [ $MB_ML_VER -eq 1 ]; then
+ export CFLAGS="-std=gnu99 -Wl,-strip-all"
+ fi
20
build_netcdf
21
}
22
0 commit comments