Add python 3.10 support

This commit is contained in:
kclowes
2021-11-19 13:48:19 -07:00
parent fcb5577fa1
commit d21d58250b
3 changed files with 9 additions and 1 deletions

View File

@ -72,6 +72,12 @@ jobs:
- image: circleci/python:3.9
environment:
TOXENV: py39-core
py310-core:
<<: *common
docker:
- image: circleci/python:3.10
environment:
TOXENV: py310-core
pypy3-core:
<<: *common
docker:

View File

@ -77,6 +77,7 @@ setup(
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: PyPy',
],
)

View File

@ -1,6 +1,6 @@
[tox]
envlist=
py{36,37,38,py3}-core
py{36,37,38,39,310,py3}-core
lint
docs
@ -30,6 +30,7 @@ basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
pypy3: pypy3
extras=
test