From 5124ec76586fe025afc5751b6023aab45160007a Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Sat, 29 Jul 2023 17:51:14 -0400 Subject: [PATCH 1/2] Just test import for wheels --- .github/workflows/wheel.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/wheel.yaml b/.github/workflows/wheel.yaml index a3f25b21..281ae9df 100644 --- a/.github/workflows/wheel.yaml +++ b/.github/workflows/wheel.yaml @@ -11,8 +11,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] env: - CIBW_TEST_COMMAND: pytest --pyargs numcodecs - CIBW_TEST_REQUIRES: pytest + CIBW_TEST_COMMAND: python -c 'import numcodecs' CIBW_SKIP: "pp* cp36-* *-musllinux_* *win32 *_i686 *_s390x" CIBW_ENVIRONMENT: "DISABLE_NUMCODECS_AVX2=1" CIBW_ENVIRONMENT_MACOS: 'MACOSX_DEPLOYMENT_TARGET=10.9 DISABLE_NUMCODECS_AVX2=1 CFLAGS="$CFLAGS -Wno-implicit-function-declaration"' From ee14f8e1ea20dd6d0655ab551a56568442ad1484 Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Sat, 29 Jul 2023 18:15:27 -0400 Subject: [PATCH 2/2] Use double quotes --- .github/workflows/wheel.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheel.yaml b/.github/workflows/wheel.yaml index 281ae9df..2dfbfd35 100644 --- a/.github/workflows/wheel.yaml +++ b/.github/workflows/wheel.yaml @@ -11,7 +11,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] env: - CIBW_TEST_COMMAND: python -c 'import numcodecs' + CIBW_TEST_COMMAND: python -c "import numcodecs" CIBW_SKIP: "pp* cp36-* *-musllinux_* *win32 *_i686 *_s390x" CIBW_ENVIRONMENT: "DISABLE_NUMCODECS_AVX2=1" CIBW_ENVIRONMENT_MACOS: 'MACOSX_DEPLOYMENT_TARGET=10.9 DISABLE_NUMCODECS_AVX2=1 CFLAGS="$CFLAGS -Wno-implicit-function-declaration"'