From 383cdf8cc689c2aa92c5fb1cd4831e0e2e5e7b35 Mon Sep 17 00:00:00 2001 From: Stephen Sorriaux Date: Mon, 22 Jan 2024 20:16:19 -0500 Subject: [PATCH] test: bump pypy to latest available We need pypy 7.3.10+ anyway to perform the SSL test because cryptography is not available before. --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 107b65eb..4e247c6f 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -52,7 +52,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7"] + python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.10-v7.3.15"] zk-version: ["3.4.14", "3.5.10", "3.6.3", "3.7.1"] include: - python-version: "3.7" @@ -63,7 +63,7 @@ jobs: tox-env: py39 - python-version: "3.10" tox-env: py310 - - python-version: "pypy-3.7" + - python-version: "pypy-3.10-v7.3.15" tox-env: pypy3 steps: - uses: actions/checkout@v4