From 5984e8facb5aa1f049c3c4e3bd9d6ac2cb0c39fb Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Wed, 18 Oct 2023 14:23:40 +0100 Subject: [PATCH] Only build PyPy 3.9 wheels as that is the only version for which Numpy wheels are available --- .github/workflows/ci_workflows.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_workflows.yml b/.github/workflows/ci_workflows.yml index b830715..686fec5 100644 --- a/.github/workflows/ci_workflows.yml +++ b/.github/workflows/ci_workflows.yml @@ -129,18 +129,18 @@ jobs: - cp3*-manylinux_x86_64 - cp3*-musllinux_x86_64 - cp3*-manylinux_aarch64 - - pp3*-manylinux_x86_64 - - pp3*-manylinux_aarch64 + - pp39-manylinux_x86_64 + - pp39-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. - cp3*macosx_x86_64 - cp3*macosx_arm64 - - pp3*macosx_x86_64 - - pp3*macosx_arm64 + - pp39-macosx_x86_64 + - pp39-macosx_arm64 # Windows wheels - cp3*win32 - cp3*win_amd64 - - pp3*win_amd64 + - pp39-win_amd64 secrets: pypi_token: ${{ secrets.pypi_token }}