Skip to content

Commit ab92198

Browse files
authored
Trim wheel builds (#320)
* Skip 32-bit wheel builds Have not been doing testing for 32-bit or supported it for some time. So drop 32-bit builds from wheels. * Drop musl builds This is a bit of an edge case that we are not otherwise testing on. So skip these builds to lighten the build matrix. * Drop s390x builds This is also a bit of an edge case architecture wise. Also we are not doing any other testing there. So drop it.
1 parent 581848e commit ab92198

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/wheel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
env:
1414
CIBW_TEST_COMMAND: pytest --pyargs numcodecs
1515
CIBW_TEST_REQUIRES: pytest
16-
CIBW_SKIP: "pp* cp36-*"
16+
CIBW_SKIP: "pp* cp36-* *-musllinux_* *win32 *_i686 *_s390x"
1717
CIBW_ENVIRONMENT: "DISABLE_NUMCODECS_AVX2=1"
1818
CIBW_ENVIRONMENT_MACOS: 'MACOSX_DEPLOYMENT_TARGET=10.9 DISABLE_NUMCODECS_AVX2=1 CFLAGS="$CFLAGS -Wno-implicit-function-declaration"'
1919

0 commit comments

Comments
 (0)