From bc741dc1af21ac1561f3a8bc93a018fece209022 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Sun, 11 Dec 2022 16:02:25 +0200 Subject: [PATCH] Drop the hyphen in PyPy version numbers I actually looked it up in the docs, and this makes more sense because you can then extend it to pypy3.7-v7.x.y etc. https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#specifying-a-pypy-version0 --- .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 558d5fd..76c89de 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,8 +26,8 @@ jobs: - "3.9" - "3.10" - "3.11" - - "pypy-2.7" - - "pypy-3.7" + - "pypy2.7" + - "pypy3.7" steps: - name: Git clone