From bcd65a6dd806bd30c907681833f78259e3d3bd7c Mon Sep 17 00:00:00 2001 From: mozman Date: Fri, 18 Dec 2020 07:40:25 +0100 Subject: [PATCH] exclude pypy3 from testing GitHub actions/checkout@v2 suddenly fails for pypy3 with error: IS_WINDOWS is not defined --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 5773b5ce2..ad048be47 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, pypy3] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2