From 136697fcb39956f62136644aea03fd6e7da96bb1 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Wed, 21 Feb 2024 22:15:28 +0100 Subject: [PATCH] GitHub Actions: test pypy3.9, remove pypy3.7 With pypy3.7 there were test failures related to lxml. I assume these started to occur because lxml 5.1.0 is actually incompatible with pypy3.7 but does not declare that version as incompatible. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 705fe54..2fe0c3f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "pypy-3.7", "pypy-3.8"] + python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9"] steps: - uses: actions/checkout@v4