Skip to content

Commit

Permalink
Support Django >= 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrauth committed Oct 12, 2024
1 parent d1ba4bb commit c189322
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 5 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ isolated_build = true
skip_missing_interpreters = true
parallel_show_output = true
envlist =
py{38,39,310,311,312}-django{32,42}
py{310,311,312}-django{42,50,51}

[testenv]
skip_install = true
Expand All @@ -16,10 +16,11 @@ setenv =
PYTHONPATH={toxinidir}
PYTHONHASHSEED=0
deps =
django32: Django>=3.2,<4.0
django42: Django>=4.2,<5.0
coverage: Django==4.2
pep: Django==4.2
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
coverage: Django>=4.2,<5.0
pep: Django>=4.2,<5.0

[testenv:clean]
description = Clean all build and test directories, as well as extraneous artificats
Expand Down Expand Up @@ -85,8 +86,6 @@ deps =

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
Expand Down

0 comments on commit c189322

Please sign in to comment.