From 088d1ff58a6fb63633f04d04d10adf022ec938f4 Mon Sep 17 00:00:00 2001 From: Icxolu <10486322+Icxolu@users.noreply.github.com> Date: Wed, 20 Nov 2024 20:30:53 +0100 Subject: [PATCH] drop support for PyPy 3.7 and 3.8 Upstream PyO3 does not support PyPy 3.7 and 3.8 anymore since 0.23. Testing against PyPy 3.9 and 3.10 now. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21f8bacf..00295597 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,14 +72,14 @@ jobs: rust-target: "aarch64-apple-darwin", } # NumPy does not provide pre-built wheels for PyPy on macOS and Windows - - python-version: pypy-3.7 + - python-version: pypy-3.9 platform: { os: "ubuntu-latest", python-architecture: "x64", rust-target: "x86_64-unknown-linux-gnu", } - - python-version: pypy-3.8 + - python-version: pypy-3.10 platform: { os: "ubuntu-latest",