From 7eb6279dd298150b0f25b1187fb83816ca8e0558 Mon Sep 17 00:00:00 2001 From: deajan Date: Sun, 15 Sep 2024 21:32:38 +0200 Subject: [PATCH] Temporarily remove pypy-3.8 from test matrix because of msgspec building --- .github/workflows/linux.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 9347791..e382e27 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -13,8 +13,8 @@ jobs: # As of 2023/01/09, we have removed python 3.5 and 3.6 as they don't work anymore with linux on github # As of 2023/08/30, we have removed python 2.7 since github actions won't provide it anymore - # As of 2024/09/15, we have (temporarily) removed 'pypy-3.10' since msgspec won't compile properly - python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", 'pypy-3.6', 'pypy-3.7', 'pypy-3.8'] + # As of 2024/09/15, we have (temporarily) removed 'pypy-3.10' and 'pypy-3.8' since msgspec won't compile properly + python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", 'pypy-3.6', 'pypy-3.7'] steps: - uses: actions/checkout@v3