github-actions: Fix pypy versions

This commit is contained in:
Unrud 2022-07-03 12:33:07 +02:00
parent d8604becd0
commit 3594217570
1 changed files with 4 additions and 4 deletions

View File

@ -6,14 +6,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', pypy3.7, pypy3.8, pypy3.9]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', pypy-3.7, pypy-3.8, pypy-3.9]
exclude:
- os: windows-latest
python-version: pypy3.7
python-version: pypy-3.7
- os: windows-latest
python-version: pypy3.8
python-version: pypy-3.8
- os: windows-latest
python-version: pypy3.9
python-version: pypy-3.9
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2