From 6ffa4ea517a80ce388d6a9ea6774749fbaff3e5a Mon Sep 17 00:00:00 2001 From: Paulo Amaral Date: Tue, 7 Nov 2023 10:06:37 +0000 Subject: [PATCH] Update Python and Django versions for local runs and CI --- .github/workflows/tox.yml | 11 +++++++++-- tox.ini | 6 +++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index c4ac2ca..413e199 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -37,8 +37,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.10"] - django: [32,40,41,main] + python: ["3.10", "3.11", "3.12"] + django: [32,42,50,main] + exclude: + - python: "3.11" + django: "32" + - python: "3.12" + django: "32" + - python: "3.12" + django: "42" env: TOXENV: py${{ matrix.python }}-django${{ matrix.django }} diff --git a/tox.ini b/tox.ini index 94b0745..d72a37d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,10 @@ [tox] isolated_build = True -envlist = fmt, lint, mypy, checks, py{3.10,3.11}-django{32,41,42,main} +envlist = + fmt, lint, mypy, checks, + py{3.10}-django{32,42,50,main} + py{3.11}-django{42,50,main} + py{3.12}-django{50,main} [testenv] deps =