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 9840f50 commit 76832deCopy full SHA for 76832de
.github/workflows/publish-sdist-wheels.yml
@@ -5,7 +5,7 @@ env:
5
apt_options: -o Acquire::Retries=3
6
7
CIBW_BUILD_VERBOSITY: 1
8
- CIBW_BUILD: 'cp*'
+ CIBW_BUILD: '*musllinux*'
9
CIBW_SKIP: 'cp35-* cp36-* cp37-* cp38-* *-manylinux_i686 *-win32'
10
CIBW_BEFORE_TEST: pip install -r {project}/tests/requirement_tests.txt
11
CIBW_TEST_COMMAND: pytest -s -v {project}/tests
@@ -61,7 +61,9 @@ jobs:
61
CIBW_BEFORE_TEST: |
62
# there are no h5py wheels for musllinux
63
# h5py needs hdf5-dev to compile from source
64
+ apk update || true
65
apk add --no-cache hdf5-dev 2>/dev/null || true
66
+ apk add --no-cache gcompat || true
67
pip install -r {project}/tests/requirement_tests.txt
68
run: |
69
# used by setup.py to decide if to set `FindHDF5` to use static hdf5 libraries
0 commit comments