diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index ce2b9d07..a867bf0f 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.10", "3.11", "3.12"] fail-fast: false steps: diff --git a/tox.ini b/tox.ini index 75a4f048..99100d07 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = lint - py3-django{32,40,41} + py3-django{40,41,42} skipsdist = True [base] @@ -22,9 +22,10 @@ setenv = SECRET_KEY=test_secret_key commands = # Reinstall Django here to override version in requirements.txt - django32: pip install django~=3.2.0 + ; django32: pip install django~=3.2.0 django40: pip install django~=4.0.0 django41: pip install django~=4.1.0 + django42: pip install django~=4.2.0 coverage run --source=lowfat/ manage.py test coverage report --skip-covered