From 2c7914f9887c66d6e62030704fc17a2a39f367df Mon Sep 17 00:00:00 2001 From: Dimitri Merejkowsky Date: Thu, 21 Dec 2023 17:28:34 +0100 Subject: [PATCH] Fix running with pypy --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b67b2e7..b48c3cd 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"] os: [ubuntu-latest, macos-latest] steps: @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}