Skip to content

Commit

Permalink
CI: Replace deprecated pypy3 with pypy-3.8
Browse files Browse the repository at this point in the history
pypy3 is deprecated and is not available in newer images:
actions/setup-python#244 (comment)

Instead explicitly specify the version:
https://github.com/actions/setup-python#specifying-a-pypy-version

Committed via https://github.com/asottile/all-repos
  • Loading branch information
hugovk authored and aleksihakli committed Nov 15, 2021
1 parent a766650 commit 9581bff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
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']
django-version: ['2.2', '3.1', '3.2']
# Tox configuration for QA environment
include:
Expand All @@ -27,7 +27,7 @@ jobs:
- python-version: '3.10'
django-version: 'main'
experimental: true
- python-version: 'pypy3'
- python-version: 'pypy-3.8'
django-version: 'main'
experimental: true

Expand Down

0 comments on commit 9581bff

Please sign in to comment.