summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-11-27 12:38:53 -0800
committerGitHub <noreply@github.com>2022-11-27 15:38:53 -0500
commit98d4fa33ccacf74c62c5a17cc35ce572fd35b223 (patch)
treef9b6b5fca55e2834bd86505aca117db2be624934 /.github/workflows/test.yml
parent37f203ed6ec9c54ea4ded0b8480846ac750a1747 (diff)
downloadpyflakes-98d4fa33ccacf74c62c5a17cc35ce572fd35b223.tar.gz
pyflakes: python3.8+ (#752)
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 74c2759..d023ba1 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,12 +12,12 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-beta - 3.11.999", "pypy-3.9"]
+ python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.9"]
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: "3.8" }
+ - { os: "windows-latest" , python-version: "3.11" }
- { os: "windows-latest" , python-version: "pypy-3.9" }
steps: