From f26b22fa6d571e71de335850ae179f16262d8124 Mon Sep 17 00:00:00 2001 From: Austin Schneider Date: Wed, 5 Jun 2024 07:31:02 -0500 Subject: [PATCH] Add all supported python versions. Remove less common architectures --- .github/workflows/build_wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index ef52c36d..fed37847 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -10,7 +10,7 @@ jobs: matrix: # macos-13 is an intel runner, macos-14 is apple silicon os: [macos-13, macos-14] - py: [cp310] + py: [cp38, cp39, cp310, cp311, cp312] steps: - uses: actions/checkout@v4 @@ -40,9 +40,9 @@ jobs: strategy: matrix: os: [ubuntu-latest] - py: [cp310] + py: [cp38, cp39, cp310, cp311, cp312] image: [manylinux, musllinux] - arch: [x86_64, i686, aarch64, ppc64le, s390x] + arch: [x86_64, aarch64] steps: - uses: actions/checkout@v4