summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPatrick <4002194+askpatrickw@users.noreply.github.com>2020-11-05 11:45:51 -0800
committerGitHub <noreply@github.com>2020-11-05 11:45:51 -0800
commitf0cc87d491e98b8770af0f3be13fba4b688298b3 (patch)
tree6c5d8db8cf35038110ca977521616ab6d2f07e8c /.github
parent82ec44e46d558df6feca900a00a8fea7c05a9ec1 (diff)
downloadclick-f0cc87d491e98b8770af0f3be13fba4b688298b3.tar.gz
test Python 3.9 (#1707)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yaml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml
index 4c457e1..0cd5fda 100644
--- a/.github/workflows/tests.yaml
+++ b/.github/workflows/tests.yaml
@@ -16,14 +16,15 @@ jobs:
fail-fast: false
matrix:
include:
- - {name: Linux, python: '3.8', os: ubuntu-latest, tox: py38}
- - {name: Windows, python: '3.8', os: windows-latest, tox: py38}
- - {name: Mac, python: '3.8', os: macos-latest, tox: py38}
+ - {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39}
+ - {name: Windows, python: '3.9', os: windows-latest, tox: py39}
+ - {name: Mac, python: '3.9', os: macos-latest, tox: py39}
+ - {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
- {name: '3.6', python: '3.6', os: ubuntu-latest, tox: py36}
- {name: 'PyPy', python: pypy3, os: ubuntu-latest, tox: pypy3}
- - {name: Style, python: '3.8', os: ubuntu-latest, tox: style}
- - {name: Docs, python: '3.8', os: ubuntu-latest, tox: docs}
+ - {name: Style, python: '3.9', os: ubuntu-latest, tox: style}
+ - {name: Docs, python: '3.9', os: ubuntu-latest, tox: docs}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2