Add Python 3.10 to build

This commit is contained in:
Miguel Grinberg
2022-05-26 10:49:07 +01:00
parent 71009b4978
commit 5b5eb907d8
2 changed files with 3 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.6', '3.7', '3.8', '3.9']
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:

View File

@@ -1,5 +1,5 @@
[tox]
envlist=flake8,py36,py37,py38,py39,upy
envlist=flake8,py36,py37,py38,py39,py310,upy
skipsdist=True
skip_missing_interpreters=True
@@ -9,6 +9,7 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
pypy3: pypy3
[testenv]