From a3d353b0d721f680d3227e164dbfbc70f5816dc0 Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Sun, 26 Sep 2021 10:10:30 +0200 Subject: [PATCH] .github/workflows: use several PyPy versions Since https://github.com/actions/setup-python/pull/168 it is possible to use both PyPy-3.6 and PyPy-3.7 in GitHub Actions. --- .github/workflows/linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b9427a24..ff367a94 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -18,7 +18,8 @@ jobs: - 3.7 - 3.6 - 3.5 - - pypy3 + - pypy-3.7 + - pypy-3.6 steps: - uses: actions/checkout@v2