From a993bba8bbe119ae0be265c4f63a7404652d540a Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 21 Oct 2025 10:47:43 +0200 Subject: [PATCH] chore: bump PyPy to currently supported 3.11 Also add test for PyPy 3.10. Python 3.9 fails on `macos-latest` but passes on `macos-14`. --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d0fdc33..e3e11020 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "pypy-3.10", "3.13", "3.14"] + python-version: ["3.8", "pypy-3.11", "3.13", "3.14"] runs-on: [ubuntu-latest, macos-14] cmake-version: ["3.15.x"] @@ -72,6 +72,10 @@ jobs: - python-version: "3.9" runs-on: ubuntu-latest cmake-version: "3.20.x" + # TODO: investigate failure with pypy-3.9/macos-latest (#1166) + - python-version: "pypy-3.10" + runs-on: macos-latest + cmake-version: "3.15.x" - python-version: "3.9" runs-on: macos-13 cmake-version: "3.18.x"