From c7d42cbf5898385eda117ecdf719222744afa040 Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Sun, 22 Sep 2024 22:07:07 +0200 Subject: [PATCH] Bump PyPy on GH Actions to 3.10 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 35c7511..96619ba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,12 +6,12 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.9'] + python-version: [3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.10'] exclude: # NOTE: pynacl should not be built from sdist, but it has no binary # wheel available for windows+pypy - os: windows-latest - python-version: 'pypy-3.9' + python-version: 'pypy-3.10' runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3