From 7fe214071263344f07542c04f6bc1ecb55242d63 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 9 Aug 2021 16:22:05 +0300 Subject: [PATCH 1/2] Test Python 3.10 release candidate --- .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..9cba9ce3 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, py10, pypy, pypy3, flake8 minversion = 3.3.0 skip_missing_interpreters = true From 8a121f951dd8ee1b4ed579e1b924c61bf4d1b23a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Mon, 9 Aug 2021 22:27:10 +0300 Subject: [PATCH 2/2] Fixed Python 3.10 tox specifier See https://github.com/tox-dev/tox/issues/1374 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9cba9ce3..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, py10, pypy, pypy3, flake8 +envlist = py27, py35, py36, py37, py38, py39, py310, pypy, pypy3, flake8 minversion = 3.3.0 skip_missing_interpreters = true