From d746ddc4eddd95c7e35f403c4374458979e2f2ff Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 9 Aug 2021 22:37:10 +0300 Subject: [PATCH] Added Python 3.10 to the testing matrix (#414) --- .github/workflows/codeqa-test.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml index 0050bdd6..a9db403a 100644 --- a/.github/workflows/codeqa-test.yml +++ b/.github/workflows/codeqa-test.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-10.15, windows-latest] - python-version: [2.7, 3.6, 3.9, pypy2, pypy3] + python-version: ["2.7", "3.6", "3.9", "3.10-dev", pypy2, pypy3] exclude: - os: macos-11.0 python-version: pypy2 diff --git a/tox.ini b/tox.ini index 441b6ee4..54c73dd2 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py35, py36, py37, py38, py39, pypy, pypy3, flake8 +envlist = py27, py35, py36, py37, py38, py39, py310, pypy, pypy3, flake8 minversion = 3.3.0 skip_missing_interpreters = true