From e1b0dab9d2efe9929bfd583e69ea8f3cc71f397c Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 3 Nov 2023 10:40:58 +0000 Subject: [PATCH] [ci] test on pypy3.9 pypy3.8 segfaulted for some reasons... Don't have time to investigate. Anyway, only pypy3.9 and 3.10 are listed on PyPy website's official download page currently so I suppose we should just test on 3.9 as the minimum pypy3 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d9071767..d97c77f20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -92,7 +92,7 @@ jobs: - name: Set up Python pypy3 uses: actions/setup-python@v4 with: - python-version: "pypy-3.8" + python-version: "pypy-3.9" - name: Install packages run: pip install tox - name: Run Tox