Support Python 3.10

This commit is contained in:
Karl Kroening 2022-03-07 01:27:03 -08:00
parent c74aa7088c
commit 362d0428f2
3 changed files with 7 additions and 2 deletions

View File

@ -15,7 +15,7 @@ jobs:
- "3.7"
- "3.8"
- "3.9"
# - "3.10" # FIXME: broken due to `collections.Iterable` issue; see #330 / #624 / etc.
- "3.10"
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}

View File

@ -92,5 +92,9 @@ setup(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)

View File

@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = py27, py35, py36, py37, py38, py39
envlist = py27, py35, py36, py37, py38, py39, py310
[gh-actions]
python =
@ -14,6 +14,7 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv]
commands = py.test -vv