From 8d21e387d84368de6d0b241323e2d8e9ac246539 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Sun, 11 Dec 2022 15:57:08 +0200 Subject: [PATCH 1/3] Revert "Drop PyPy2 from GitHub Actions" This reverts commit cb3802018e27e2868a5a2ca3d2b207914fe9105b. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 76e291b..8ae787f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,6 +26,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "pypy2" - "pypy-3.7" steps: From d2cea9284c4faf3cb9f86da4c503a7a6e82482fc Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Sun, 11 Dec 2022 15:59:09 +0200 Subject: [PATCH 2/3] Let's try pypy-2.7 Because it looks like pypy-3.7. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ae787f..fe0eecf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: - "3.9" - "3.10" - "3.11" - - "pypy2" + - "pypy-2.7" - "pypy-3.7" steps: From 84ca552054a9e69e5d50a647ff0e4117d1bc0608 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Sun, 11 Dec 2022 16:00:52 +0200 Subject: [PATCH 3/3] The coveralls exclusion needs to catch up --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fe0eecf..558d5fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,7 +61,7 @@ jobs: - name: Report to coveralls run: coveralls - if: "matrix.python-version != '2.7' && matrix.python-version != 'pypy2'" + if: "matrix.python-version != '2.7' && matrix.python-version != 'pypy-2.7'" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_SERVICE_NAME: github