Skip to content

Commit

Permalink
Update Python and Django versions for local runs and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
paulopaixaoamaral committed Nov 7, 2023
1 parent 56fdca5 commit 13d70c4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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 =
Expand Down

0 comments on commit 13d70c4

Please sign in to comment.