From d7a5b97c10607df11b1e9495cfdc918b154ef5f0 Mon Sep 17 00:00:00 2001 From: mdlpstsci Date: Tue, 13 Aug 2024 08:22:11 -0400 Subject: [PATCH] Eliminate Python 3.13 from the target list (#1864) --- .github/workflows/build.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea72c540d..a7d634fbb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,13 @@ jobs: with: upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} targets: | - # Linux wheels - - cp3*-manylinux_x86_64 - # MacOS wheels - - cp3*-macosx_x86_64 + # Linux wheels (except python 313) + - cp31[!3]-manylinux_x86_64 + # MacOS wheels (except python 313) + - cp31[!3]-macosx_x86_64 # Until we have arm64 runners, we can't automatically test arm64 wheels -# - cp3*-macosx_arm64 + # (except python 313) +# - cp31[!3]-macosx_arm64 sdist: true test_command: python -c "from drizzlepac import cdriz" secrets: