summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-03-25 11:05:29 -0400
committerGitHub <noreply@github.com>2022-03-25 11:05:29 -0400
commit2409df015d9d847890716b242cb418047cd9d6b7 (patch)
tree82b3cd978ebb9876be2545a3bb7aa8b74d42204a
parent84da8cdaad574df7e692dff06ab561acc63d521c (diff)
downloadpyflakes-2409df015d9d847890716b242cb418047cd9d6b7.tar.gz
use updated pypy3 name for github actions (#685)
-rw-r--r--.github/workflows/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index fd21c11..0c5996f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -8,13 +8,13 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
os: [ubuntu-latest]
# Include minimum py3 + maximum py3 + pypy3 on Windows
include:
- { os: "windows-latest" , python-version: "3.6" }
- { os: "windows-latest" , python-version: "3.10" }
- - { os: "windows-latest" , python-version: "pypy3" }
+ - { os: "windows-latest" , python-version: "pypy-3.7" }
steps:
- uses: actions/checkout@v2