From 4a08cc8e02d41bc6adcdf27350683bff6e7713ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Tue, 13 Aug 2024 10:23:06 +0200 Subject: [PATCH] WHL: skip tests on CPython 3.13 for now (wait for numpy wheels) --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 30463f0..eff918f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,9 +28,11 @@ jobs: # For nightly wheels as well as when building with the 'Build all wheels' label, we disable # the build isolation and explicitly install the latest developer version of numpy as well as # the latest stable versions of all other build-time dependencies. + # Skip testing on cp313 until numpy has stable wheels for it on PyPI env: | CIBW_BEFORE_BUILD: '${{ ((github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && 'pip install --pre setuptools setuptools_scm jinja2 numpy') || '' }}' CIBW_BUILD_FRONTEND: '${{ ((github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'pull_request') && 'pip; args: --no-build-isolation') || 'build' }}' + CIBW_TEST_SKIP: 'cp313-*' test_extras: test test_command: pytest --pyargs erfa