diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09b8ff0a..370c6172 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,21 +13,11 @@ jobs: upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }} targets: | # Linux wheels - - cp39-manylinux_x86_64 - - cp310-manylinux_x86_64 - - cp311-manylinux_x86_64 - - cp312-manylinux_x86_64 - + - cp3*-manylinux_x86_64 # MacOS wheels - - cp39*macosx_x86_64 - - cp310*macosx_x86_64 - - cp311*macosx_x86_64 - - cp312*macosx_x86_64 + - cp3*-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 + - cp3*-macosx_arm64 sdist: true secrets: pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }}