Skip to content

Commit

Permalink
Add Django 5.0 to tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocaccamo committed Dec 5, 2023
1 parent bd530a6 commit d7d26fb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
matrix: |
python-version {3.8}, django-version {3.0, 3.1, 3.2, 4.0, 4.1, 4.2}
python-version {3.9}, django-version {3.0, 3.1, 3.2, 4.0, 4.1, 4.2}
python-version {3.10}, django-version {3.2, 4.0, 4.1, 4.2}
python-version {3.11}, django-version {4.1, 4.2}
python-version {3.12}, django-version {4.2}
python-version {3.10}, django-version {3.2, 4.0, 4.1, 4.2, 5.0}
python-version {3.11}, django-version {4.1, 4.2, 5.0}
python-version {3.12}, django-version {4.2, 5.0}
outputs:
matrix: ${{ steps.create_matrix.outputs.matrix }}
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand All @@ -45,6 +46,7 @@ dependencies = [
"python-fsutil >= 0.9.2, < 1.0.0",
]
dynamic = ["version"]
license = "MIT"
maintainers = [
{ name = "Fabio Caccamo", email = "fabio.caccamo@gmail.com" },
]
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
envlist =
py38-{dj30,dj31,dj32,dj40,dj41,dj42},
py39-{dj30,dj31,dj32,dj40,dj41,dj42},
py310-{dj32,dj40,dj41,dj42},
py311-{dj41,dj42},
py312-{dj42},
py310-{dj32,dj40,dj41,dj42,dj50},
py311-{dj41,dj42,dj50},
py312-{dj42,dj50},

[gh-actions]
python =
Expand All @@ -24,6 +24,7 @@ deps =
dj40: Django == 4.0.*
dj41: Django == 4.1.*
dj42: Django == 4.2.*
dj50: Django == 5.0.*
-r requirements.txt
-r requirements-test.txt

Expand Down

0 comments on commit d7d26fb

Please sign in to comment.