diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5c07b9a..3cbd18d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,10 +14,12 @@ jobs: strategy: matrix: os: [ ubuntu-latest, macos-latest, windows-latest ] - python-version: [ '3.7', '3.8', '3.9', 'pypy-3.7' ] + python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9', 'pypy-3.10' ] exclude: - os: macos-latest - python-version: 'pypy-3.7' + python-version: 'pypy-3.9' + - os: macos-latest + python-version: 'pypy-3.10' runs-on: ${{ matrix.os }}