From 491ab9d1b48998585ee00b9404faaab35f58d4b2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 14 Oct 2025 16:26:09 +0200 Subject: [PATCH 1/2] Backport PR #1444: ci: Test on PyPy 3.11 instead of 3.10 --- .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 f78dc42a0..416a89d94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - "3.11" - "3.12" - "3.13" - - "pypy-3.10" + - "pypy-3.11" steps: - name: Checkout uses: actions/checkout@v4 @@ -52,7 +52,7 @@ jobs: timeout-minutes: 15 if: ${{ startsWith( matrix.python-version, 'pypy' ) }} run: | - hatch run test:nowarn + hatch run test:nowarn --ignore=tests/test_debugger.py - name: Run the tests on Windows timeout-minutes: 15 From befb2c1f86e797c517d880238b23567c877ad0c3 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Mon, 20 Oct 2025 11:03:48 +0100 Subject: [PATCH 2/2] Exclude pickleutil closure tests on pypy 3.11 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 416a89d94..f5103c959 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: timeout-minutes: 15 if: ${{ startsWith( matrix.python-version, 'pypy' ) }} run: | - hatch run test:nowarn --ignore=tests/test_debugger.py + hatch run test:nowarn --ignore=tests/test_debugger.py -k "not closure" - name: Run the tests on Windows timeout-minutes: 15