Skip to content

Commit 6037cff

Browse files
committed
update
1 parent 8221758 commit 6037cff

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

.github/workflows/build-wheels-macosx.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
MB_ML_VER: 2014
3434
BUILD_COMMIT: v1.6.0rel
3535
UNICODE_WIDTH: 32
36-
#PLAT: universal2
3736
PLAT: arm64
3837
MB_PYTHON_VERSION: ${{ matrix.python-version }}
3938
TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }}
@@ -102,8 +101,8 @@ jobs:
102101
clean_code $REPO_DIR $BUILD_COMMIT
103102
echo "------- BUILD WHEEL --------"
104103
build_wheel $REPO_DIR $PLAT
105-
#echo "------- INSTALL_RUN --------"
106-
#install_run $PLAT
104+
echo "------- INSTALL_RUN --------"
105+
install_run $PLAT
107106
- name: Upload wheels to release
108107
uses: svenstaro/upload-release-action@v2
109108
if: github.event_name == 'create'

config.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,8 @@ export BLOSC_VERSION="1.21.1"
2222
# custom version that sets NETCDF_PLUGIN_DIR env var
2323
function build_wheel {
2424
# Set default building method to pip
25-
if [[ ! -z "IS_OSX" && "$PLAT" = "arm64" ]] && [[ "$CROSS_COMPILING" = "1" ]]; then
26-
wrap_wheel_builder build_pip_wheel $@
27-
else:
28-
export NETCDF_PLUGIN_DIR=${BUILD_PREFIX}/lib/netcdf-plugins
29-
wrap_wheel_builder build_pip_wheel $@
30-
fi
25+
export NETCDF_PLUGIN_DIR=${BUILD_PREFIX}/lib/netcdf-plugins
26+
wrap_wheel_builder build_pip_wheel $@
3127
}
3228

3329
# add --verbose to pip

0 commit comments

Comments
 (0)