From d85fd98b5caa669e75cbd41e52524b2703f8b3b7 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Wed, 4 Oct 2023 14:18:19 -0400 Subject: [PATCH] Add python 3.12 to the CI (#457) --- .github/workflows/ci.yaml | 2 +- tox.ini | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index af0400d9..f8ee3dda 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v1 diff --git a/tox.ini b/tox.ini index 1fc0e166..4e34d4a9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35, py36, py37, py38, py39, py310, docs, lint, pylint, bandit +envlist = py35, py36, py37, py38, py39, py310, py311, py312, docs, lint, pylint, bandit skip_missing_interpreters = True [gh-actions] @@ -10,7 +10,8 @@ python = 3.8: py38, mypy 3.9: py39, mypy 3.10: py310, mypy - 3.11: py310, mypy + 3.11: py311, mypy + 3.12: py312, mypy [testenv] deps =