diff --git a/.github/workflows/wheels-workflow.yaml b/.github/workflows/wheels-workflow.yaml index 62fb728d..687f6b41 100644 --- a/.github/workflows/wheels-workflow.yaml +++ b/.github/workflows/wheels-workflow.yaml @@ -44,7 +44,7 @@ jobs: CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=${{ runner.arch == 'ARM64' && '11.0' || '10.13' }} CIBW_TEST_COMMAND: pytest --strict-markers -m 'not slow' -k 'not test_fit_and_predict_linear_regression' {project}/tests CIBW_TEST_COMMAND_WINDOWS: pytest --strict-markers -m "not slow" -k "not test_fit_and_predict_linear_regression" {project}\\tests - CIBW_TEST_REQUIRES: pytest + CIBW_TEST_REQUIRES: pytest numpy~=1.26.4 # Skip trying to test arm64 builds on Intel Macs, and vice versa CIBW_TEST_SKIP: "*-macosx_${{ runner.arch == 'ARM64' && 'x86_64' || 'arm64' }} *-macosx_universal2:arm64" - uses: actions/upload-artifact@v4