From 34d6914c065541e17dd39e290fe6db678fe9c4f0 Mon Sep 17 00:00:00 2001 From: Chris Lenk Date: Fri, 20 Oct 2023 11:28:14 -0400 Subject: [PATCH] Update tested python versions --- .github/workflows/testing.yml | 6 ++++-- tox.ini | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ee667ab..6046330 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -9,12 +9,14 @@ jobs: fail-fast: false matrix: include: - - python-version: 3.7 - toxenv: py37,style,coverage-ci - python-version: 3.8 toxenv: py38,style,coverage-ci - python-version: 3.9 toxenv: py39,style,coverage-ci + - python-version: 3.10.9 + toxenv: py310,style,coverage-ci + - python-version: 3.11 + toxenv: py311,style,coverage-ci steps: - uses: actions/checkout@v2 diff --git a/tox.ini b/tox.ini index 0d80529..a4d2f65 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ [tox] skipsdist = True envlist = - py{37,38,39} + py{38,39,310,311} style coverage bandit