From 506c16c29e58799f89cac79c18eff8f3c540eaf3 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 3 Jan 2024 14:10:19 +0100 Subject: [PATCH] Add PyPy 3.9 to the testing https://www.pypy.org/download.html --- .github/workflows/tox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 029f5fe7..ebcd7715 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -4,10 +4,10 @@ jobs: tox: strategy: fail-fast: false - max-parallel: 6 + max-parallel: 7 matrix: os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest] - python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.10'] + python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9', 'pypy3.10'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4