Merge pull request #626 from jazzband/django51

Add formal support for django 5.1
This commit is contained in:
Jelmer 2024-08-28 10:04:04 +02:00 committed by GitHub
commit 2882614f0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 1 deletions

View file

@ -3,7 +3,7 @@ Changelog
To be released
--------------
- Add formal support for `Django 5.1`
- Remove MonitorField deprecation warning. `None` - instead of
`django.utils.timezone.now` will be used when nullable and no default provided (GH-#599)
- Add deprecation warning for MonitorField. The default value will be `None`

View file

@ -50,6 +50,7 @@ setup(
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
],
zip_safe=False,
package_data={

View file

@ -5,6 +5,7 @@ envlist =
py{38,39,310,311}-dj{41}
py{38,39,310,311}-dj{42}
py{310,311,312}-dj{50}
py{310,311,312}-dj{51}
py{310,311,312}-dj{main}
flake8
isort
@ -28,6 +29,7 @@ deps =
dj41: Django==4.1.*
dj42: Django==4.2.*
dj50: Django==5.0.*
dj51: Django==5.1.*
djmain: https://github.com/django/django/archive/main.tar.gz
ignore_outcome =
djmain: True