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 50697ec commit 774ff88Copy full SHA for 774ff88
.github/workflows/publish-sdist-wheels.yml
@@ -62,12 +62,7 @@ jobs:
62
run: |
63
# used by setup.py to decide if to set `FindHDF5` to use static hdf5 libraries
64
export STATIC_HDF5=True
65
-
66
- if [[ "$(uname -m)" == "aarch64" ]]; then
67
- export CMAKE_PREFIX_PATH=/opt/hdf5-static/install-aarch64/install/
68
- else
69
- export CMAKE_PREFIX_PATH=/opt/hdf5-static/install-x86_64/install/
70
- fi
+ export CMAKE_PREFIX_PATH=/opt/hdf5-static/install-$(uname -m)/install/
71
72
CIBW_MANYLINUX_X86_64_IMAGE=manylinux2014 python -m cibuildwheel --output-dir dist
73
CIBW_MANYLINUX_X86_64_IMAGE=manylinux_2_28 python -m cibuildwheel --output-dir dist
0 commit comments