Skip to content

Commit

Permalink
fix(ci): use PyPy 3.9 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
msiemens committed Jan 11, 2023
1 parent d264167 commit 28bb65a
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ 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"
- os: macos-latest
python-version: "pypy3"
python-version: "pypy-3.9"

steps:
- uses: actions/checkout@v2
Expand All @@ -38,7 +36,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
Expand Down

0 comments on commit 28bb65a

Please sign in to comment.