From 2aa5ffba6f9b575234919080ca45bf0d38808210 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 23 Jan 2024 08:30:26 -0500 Subject: [PATCH] build: skip windows PyPy 3.9 and 3.10 for 7.3.15 --- .github/workflows/testsuite.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 8017afde0..cab43b601 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -53,6 +53,14 @@ jobs: - "pypy-3.8" - "pypy-3.9" - "pypy-3.10" + exclude: + # Windows pypy 3.9 and 3.10 get stuck with PyPy 7.3.15. I hope to + # unstick them, but I don't want that to block all other progress, so + # skip them for now. + - os: windows + python-version: "pypy-3.9" + - os: windows + python-version: "pypy-3.10" fail-fast: false steps: