summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2021-12-09 08:36:26 +0100
committerGitHub <noreply@github.com>2021-12-09 08:36:26 +0100
commit8cf8c020d064ec543bc9fc0cf9410981e2495226 (patch)
treefca3ca4a494b3c15306ad28f8df262756de95a1b /.github
parent8a13762e60726845351d672ee27c093555bf649e (diff)
downloadzope-i18n-8cf8c020d064ec543bc9fc0cf9410981e2495226.tar.gz
Add support for Python 3.10. (#53)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 9ea114e..d31f648 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -20,17 +20,18 @@ jobs:
- ubuntu
config:
# [Python version, tox env]
- - ["3.8", "lint"]
+ - ["3.9", "lint"]
- ["2.7", "py27"]
- ["3.5", "py35"]
- ["3.6", "py36"]
- ["3.7", "py37"]
- ["3.8", "py38"]
- ["3.9", "py39"]
+ - ["3.10", "py310"]
- ["pypy2", "pypy"]
- ["pypy3", "pypy3"]
- - ["3.8", "docs"]
- - ["3.8", "coverage"]
+ - ["3.9", "docs"]
+ - ["3.9", "coverage"]
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.config[1] }}