Skip to content

Commit

Permalink
Fix Python versions in matrix (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve authored Mar 2, 2025
1 parent fad305d commit 94b4cc6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
strategy:
matrix:
python-version: [3.9, "3.10", 3.11, 3.12, 3.13]
django-version: [4.2, 5.0, 5.1, "main"]
django-version: [4.2, "5.0", 5.1, "main"]
exclude:
# Django 5.0
- python-version: 3.9
django-version: 5.0
django-version: "5.0"

# Django 5.1
- python-version: 3.9
Expand All @@ -35,6 +35,10 @@ jobs:
# Django main
- python-version: 3.9
django-version: "main"
- python-version: "3.10"
django-version: "main"
- python-version: 3.11
django-version: "main"

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ envdir = {toxinidir}/.venv
args_are_paths = false
envlist =
py39-{4.2},
py310-{4.2,5.0,5.1,main},
py311-{4.2,5.0,5.1,main},
py310-{4.2,5.0,5.1},
py311-{4.2,5.0,5.1},
py312-{4.2,5.0,5.1,main},
py313-{4.2,5.0,5.1,main},
docs,
Expand Down

0 comments on commit 94b4cc6

Please sign in to comment.