Skip to content

Commit

Permalink
Update verisons of python and django in workflow and tox
Browse files Browse the repository at this point in the history
  • Loading branch information
phillybroadbent committed Feb 9, 2024
1 parent 0de385b commit f14294a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/django.yml
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
@@ -1,7 +1,7 @@
[tox]
envlist =
lint
py3-django{32,40,41}
py3-django{40,41,42}
skipsdist = True

[base]
Expand All @@ -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
Expand Down

0 comments on commit f14294a

Please sign in to comment.