summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-10-10 05:44:55 +0000
committerKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-10-10 05:44:55 +0000
commitc291543d9f0863b8f77b4426230c9535ba8e64eb (patch)
tree8d112f25849b086765ba7132338fd47d423d8499 /.github
parent861e04788aae85b54320e5124eb99ccf97049898 (diff)
downloadclick-c291543d9f0863b8f77b4426230c9535ba8e64eb.tar.gz
Add python 3.9 to CI.
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