From d63f68b1048929ea51ae6909826cf7194753b784 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 10 Nov 2021 22:14:24 +0200 Subject: [PATCH 1/2] 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 8c88669..39c5c3e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [3.6, 3.7, 3.8, 3.9, '3.10.0-beta - 3.10', 'pypy3'] + python-version: [3.6, 3.7, 3.8, 3.9, '3.10.0-beta - 3.10', 'pypy-3.8'] steps: - uses: actions/checkout@v2 From 26ad9aef802036f6b116eb02db87992b75da95f0 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 10 Nov 2021 22:59:22 +0200 Subject: [PATCH 2/2] Test Python 3.10 final --- .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 39c5c3e..b2714f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [3.6, 3.7, 3.8, 3.9, '3.10.0-beta - 3.10', 'pypy-3.8'] + python-version: [3.6, 3.7, 3.8, 3.9, '3.10', 'pypy-3.8'] steps: - uses: actions/checkout@v2