From 42c648fd4f19caf4c5fc2e7b6d4ff69059a72db8 Mon Sep 17 00:00:00 2001 From: Markus Siemens Date: Wed, 11 Jan 2023 20:34:13 +0100 Subject: [PATCH] fix(ci): use PyPy 3.9 for tests --- .github/workflows/ci-workflow.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index f6824923..a359bd99 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -11,13 +11,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.9"] os: [ubuntu-latest, macos-latest, windows-latest] exclude: - os: windows-latest - python-version: "pypy3" + python-version: "pypy-3.9" - os: macos-latest - python-version: "pypy3" + python-version: "pypy-3.9" steps: - uses: actions/checkout@v2 @@ -38,7 +38,6 @@ jobs: run: | poetry run pip install pytest-mypy poetry run pytest --mypy -m mypy tinydb tests - if: matrix.python-version != 'pypy3' - name: Verify dist package format run: | poetry build