From 07324b9711b23084e44b0593031cd86b14653e4c Mon Sep 17 00:00:00 2001 From: "P. L. Lim" <2090236+pllim@users.noreply.github.com> Date: Fri, 18 Aug 2023 11:39:31 -0400 Subject: [PATCH] Be more specific on wheel specs because you are not ready for Python 3.12 and I don't have time to fix it for you --- .github/workflows/ci_workflows.yml | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci_workflows.yml b/.github/workflows/ci_workflows.yml index 12c1cad..c157155 100644 --- a/.github/workflows/ci_workflows.yml +++ b/.github/workflows/ci_workflows.yml @@ -124,16 +124,30 @@ jobs: test_command: pytest --pyargs erfa targets: | # Linux wheels - - cp*-manylinux_i686 - - cp*-manylinux_x86_64 - - cp*-musllinux_x86_64 - - cp*-manylinux_aarch64 + - cp39-manylinux_x86_64 + - cp310-manylinux_x86_64 + - cp311-manylinux_x86_64 + - cp39-musllinux_x86_64 + - cp310-musllinux_x86_64 + - cp311-musllinux_x86_64 + - cp39-manylinux_aarch64 + - cp310-manylinux_aarch64 + - cp311-manylinux_aarch64 # MacOS X wheels - we deliberately do not build universal2 wheels. # Note that the arm64 wheels are not actually tested so we # rely on local manual testing of these to make sure they are ok. - - cp*-macosx_x86_64 - - cp*-macosx_arm64 + - cp39*macosx_x86_64 + - cp310*macosx_x86_64 + - cp311*macosx_x86_64 + - cp39*macosx_arm64 + - cp310*macosx_arm64 + - cp311*macosx_arm64 # Windows wheels - - cp*-win* + - cp39*win32 + - cp310*win32 + - cp311*win32 + - cp39*win_amd64 + - cp310*win_amd64 + - cp311*win_amd64 secrets: pypi_token: ${{ secrets.pypi_token }}