From 342ed6e21f8b3138db75ceaebee766989c43b56a Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 6 Dec 2022 21:00:22 +0200 Subject: [PATCH] Add support for PyPy3.9, drop PyPy3.7 --- .github/workflows/wheels-linux.yml | 10 +++++++++- .github/workflows/wheels-macos.yml | 12 +++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels-linux.yml b/.github/workflows/wheels-linux.yml index 31878d829..fb043b8a7 100644 --- a/.github/workflows/wheels-linux.yml +++ b/.github/workflows/wheels-linux.yml @@ -21,7 +21,15 @@ jobs: strategy: fail-fast: false matrix: - python: [ "pypy3.7-7.3.9", "pypy3.8-7.3.9", "3.7", "3.8", "3.9", "3.10", "3.11" ] + python: [ + "pypy3.8-7.3.10", + "pypy3.9-7.3.10", + "3.7", + "3.8", + "3.9", + "3.10", + "3.11", + ] platform: [ "i686", "x86_64" ] mb-ml-libc: [ "manylinux" ] mb-ml-ver: [ 2014, "_2_28" ] diff --git a/.github/workflows/wheels-macos.yml b/.github/workflows/wheels-macos.yml index 4ea43fcff..42f5f4aaa 100644 --- a/.github/workflows/wheels-macos.yml +++ b/.github/workflows/wheels-macos.yml @@ -21,7 +21,15 @@ jobs: strategy: fail-fast: false matrix: - python: [ "pypy3.7-7.3.9", "pypy3.8-7.3.9", "3.7", "3.8", "3.9", "3.10", "3.11" ] + python: [ + "pypy3.8-7.3.10", + "pypy3.9-7.3.10", + "3.7", + "3.8", + "3.9", + "3.10", + "3.11", + ] platform: [ "x86_64", "arm64" ] exclude: - python: "3.7" @@ -30,6 +38,8 @@ jobs: platform: "arm64" - python: "pypy3.8-7.3.9" platform: "arm64" + - python: "pypy3.9-7.3.9" + platform: "arm64" env: BUILD_COMMIT: ${{ inputs.build-commit }} PLAT: ${{ matrix.platform }}