From 14cc74cc890ef369eac945fff39f4ad90a7a1b0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Mon, 25 Jul 2022 18:47:31 -0700 Subject: [PATCH] Test with CPython 3.11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bernát Gábor --- .github/workflows/check.yml | 1 + tox.ini | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 8181b49f4..35b668494 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -17,6 +17,7 @@ jobs: fail-fast: false matrix: py: + - "3.11" - "3.10" - "3.9" - "3.8" diff --git a/tox.ini b/tox.ini index b89a681f4..1c9151242 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,12 @@ [tox] envlist = fix_lint + py311 + py310 py39 py38 py37 py36 - py35 pypy3 coverage readme @@ -76,12 +77,12 @@ commands = python -m coverage html -d {toxworkdir}/htmlcov python -m diff_cover.diff_cover_tool --compare-branch {env:DIFF_AGAINST:origin/main} {toxworkdir}/coverage.xml depends = + py311 + py310 py39 py38 py37 py36 - py35 - py27 pypy pypy3