Skip to content

Commit

Permalink
Add support for Django 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pikhovkin committed Dec 22, 2023
1 parent 68ba4bc commit 2cb462c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ classifiers = [
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Programming Language :: Python",
Expand All @@ -45,7 +46,7 @@ classifiers = [
"Topic :: Utilities",
]
dependencies = [
'Django>=4.0, <4.3',
'Django>=4.0, <5.1',
]

[project.urls]
Expand Down Expand Up @@ -88,11 +89,12 @@ matrix.django.dependencies = [
{value='Django~=4.0.0', if=['4.0']},
{value='Django~=4.1.0', if=['4.1']},
{value='Django~=4.2.0', if=['4.2']},
{value='Django~=5.0.0', if=['5.0']},
]

[[tool.hatch.envs.all.matrix]]
python = ["3.10", "3.11", "3.12"]
django = ["4.0", "4.1", "4.2"]
django = ["4.0", "4.1", "4.2", "5.0"]

[tool.hatch.envs.typing]
dependecies = [
Expand Down

0 comments on commit 2cb462c

Please sign in to comment.