From d86c4f823e4b39770aaa8aa171c69595a81d441b Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 17 Jan 2024 15:14:42 +0000 Subject: [PATCH] tox: Add tox-gh-actions config for Python 3.12 Signed-off-by: Stephen Finucane --- .github/workflows/ci.yaml | 2 ++ tox.ini | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1b6ae4b6..a4a65789 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,6 +27,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: + # NOTE: If you add a version here, don't forget to update the + # '[gh-actions]' section in tox.ini python: ["3.8", "3.9", "3.10", "3.11", "3.12"] db: [postgres, mysql, sqlite3] env: diff --git a/tox.ini b/tox.ini index 4276ed1b..041097cd 100644 --- a/tox.ini +++ b/tox.ini @@ -75,3 +75,4 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312