From 2ed66ba62674e915ccb0a0554efa5f079f6fc681 Mon Sep 17 00:00:00 2001 From: zacharyburnett Date: Mon, 2 Oct 2023 11:25:44 -0400 Subject: [PATCH] copy build matrix from Astropy --- .github/workflows/build.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9479373a..09b8ff0a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,8 +12,22 @@ jobs: with: upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} targets: | - - cp3?-manylinux_x86_64 - - cp3?-macosx_x86_64 + # Linux wheels + - cp39-manylinux_x86_64 + - cp310-manylinux_x86_64 + - cp311-manylinux_x86_64 + - cp312-manylinux_x86_64 + + # MacOS wheels + - cp39*macosx_x86_64 + - cp310*macosx_x86_64 + - cp311*macosx_x86_64 + - cp312*macosx_x86_64 + # Until we have arm64 runners, we can't automatically test arm64 wheels + - cp39*macosx_arm64 + - cp310*macosx_arm64 + - cp311*macosx_arm64 + - cp312*macosx_arm64 sdist: true secrets: pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }}