github-actions: Fix pypy versions

This commit is contained in:
Unrud 2022-07-03 12:33:07 +02:00
parent d8604becd0
commit 3594217570

View File

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