diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml index 19881858..ff03eb22 100644 --- a/.github/workflows/test-ci.yml +++ b/.github/workflows/test-ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] runs-on: ${{ matrix.os }} steps: diff --git a/tox.ini b/tox.ini index aa4e2979..1d072f6f 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ # https://tox.readthedocs.io/ [tox] -envlist = py36, py37, py38, py39 +envlist = py36, py37, py38, py39, py310 [gh-actions] python = @@ -23,6 +23,7 @@ python = 3.7: py37 3.8: py38 3.9: py39 + 3.10: py310 [testenv] deps = pytest