From d4887ce0ba15d50e34271bdbea50ae6192d60149 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Mon, 22 Nov 2021 12:31:52 +0100 Subject: [PATCH] Added Python 3.10 to test matrix. --- .github/workflows/ci.yml | 5 ++++- tox.ini | 5 +++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e339eceb..55e28c03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,12 +39,15 @@ jobs: toxenv: py38-3.2.X - python: 3.9 toxenv: py39-3.2.X + - python: "3.10" + toxenv: py310-3.2.X - python: 3.8 toxenv: py38-4.0.X - python: 3.9 toxenv: py39-4.0.X - + - python: "3.10" + toxenv: py310-4.0.X runs-on: ubuntu-latest steps: diff --git a/tox.ini b/tox.ini index 2fbe8f18..65f35b6f 100644 --- a/tox.ini +++ b/tox.ini @@ -2,14 +2,15 @@ envlist = {py36,py37,py38,py39}-2.2.X {py36,py37,py38,py39}-3.1.X - {py36,py37,py38,py39}-3.2.X - {py38,py39}-4.0.X + {py36,py37,py38,py39,py310}-3.2.X + {py38,py39,,py310}-4.0.X [testenv] basepython = py36: python3.6 py37: python3.7 py38: python3.8 py39: python3.9 + py310: python3.10 usedevelop = true setenv = CPPFLAGS=-O0