From 3c81a200d45b9a635de11a4695a6a9d90a1a32e8 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Tue, 18 Jul 2023 14:56:34 +0100 Subject: [PATCH 1/2] Skip running `cattrs` tests on PyPy Fixes #271 (for some definition of the word "fix") --- .github/workflows/third_party.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/third_party.yml b/.github/workflows/third_party.yml index d07f82e3..45ed2b3d 100644 --- a/.github/workflows/third_party.yml +++ b/.github/workflows/third_party.yml @@ -312,7 +312,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.9"] + python-version: ["3.8", "3.9", "3.10", "3.11"] runs-on: ubuntu-latest timeout-minutes: 60 steps: From eb583d55e6df8c5a5830a26eb37649c2e1566c46 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Tue, 18 Jul 2023 15:16:15 +0100 Subject: [PATCH 2/2] Add TODO --- .github/workflows/third_party.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/third_party.yml b/.github/workflows/third_party.yml index 45ed2b3d..7910bca4 100644 --- a/.github/workflows/third_party.yml +++ b/.github/workflows/third_party.yml @@ -312,6 +312,8 @@ jobs: strategy: fail-fast: false matrix: + # TODO: Add pypy3.9 back to this matrix + # After PyYAML/PyPy issues are fixed (see #271) python-version: ["3.8", "3.9", "3.10", "3.11"] runs-on: ubuntu-latest timeout-minutes: 60