From cd92243bbcf8b4df2e458c9023e41f1c6a12365f Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 10 Nov 2021 22:14:36 +0200 Subject: [PATCH] CI: Replace deprecated pypy3 with pypy-3.8 pypy3 is deprecated and is not available in newer images: https://github.com/actions/setup-python/issues/244#issuecomment-925966022 Instead explicitly specify the version: https://github.com/actions/setup-python#specifying-a-pypy-version Committed via https://github.com/asottile/all-repos --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bb8ef4a..2e179e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false max-parallel: 5 matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy3'] + python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy-3.8'] steps: - uses: actions/checkout@v2