From 170a16abf8b8cd946ccb1c45c322151fd22a1e2c Mon Sep 17 00:00:00 2001 From: Nicolas Iooss Date: Sun, 26 Sep 2021 19:38:09 +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