From c729194a3e5cf2999afdf159e9760138a696bd97 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Wed, 9 Oct 2024 16:15:03 +0300 Subject: [PATCH] Use a more modern PyPy version --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d19e9f..3a128b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: - "3.10" - "3.11" - "3.12" - - "pypy-3.7" + - "pypy3.10" steps: - name: Git clone @@ -58,7 +58,7 @@ jobs: - name: Check test coverage run: | - coverage report -m --fail-under=${{ matrix.python-version == 'pypy-3.7' && 99 || 100 }} + coverage report -m --fail-under=${{ matrix.python-version == 'pypy3.10' && 99 || 100 }} coverage xml - name: Report to coveralls