From a1b0669f5696b1f0665150c0e693b6a12f7e4792 Mon Sep 17 00:00:00 2001 From: Eric Prestat Date: Thu, 19 Dec 2024 14:49:42 +0000 Subject: [PATCH] Build python 3.13 wheel --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c2470381..2534625a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,12 +19,12 @@ jobs: CIBW_ENVIRONMENT: POOCH_BASE_URL=https://github.com/${{ github.repository }}/raw/${{ github.ref_name }}/rsciio/tests/data/ CIBW_TEST_COMMAND: "pytest --pyargs rsciio" CIBW_TEST_EXTRAS: "tests" - # Skip testing arm64 builds with python 3.8 - CIBW_TEST_SKIP: "cp38-macosx_arm64" + # Skip testing on python 3.13 until traits wheel are not available for python 3.13 + CIBW_TEST_SKIP: "cp313*" # No need to build wheels for pypy because the pure python wheels can be used # PyPy documentation recommends no to build the C extension # CPython 3.13 not supported yet because of pint - CIBW_SKIP: "{pp*,cp313*,*-musllinux*,*win32,*-manylinux_i686}" + CIBW_SKIP: "{pp*,*-musllinux*,*win32,*-manylinux_i686}" strategy: fail-fast: false matrix: