Add official support for Django 4.2

This commit is contained in:
Bruno Alla 2023-04-18 11:04:48 +01:00
parent 9cbd512d75
commit d65b916189
No known key found for this signature in database
3 changed files with 5 additions and 1 deletions

View file

@ -12,6 +12,8 @@ v3.0.0 (future)
* Example app now supports django 4.1
* Add support for django 4.2
v2.10.0 (unreleased)
~~~~~~~~~~~~~~~~~~

View file

@ -37,6 +37,7 @@ setup(
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',

View file

@ -4,7 +4,7 @@ requires =
envlist =
py{37,38,39,310,py3}-dj{32}-{unittest,pytest}
py{38,39,310}-dj{40}-{unittest,pytest}
py{38,39,310,311}-dj{41}-{unittest,pytest}
py{38,39,310,311}-dj{41,42}-{unittest,pytest}
py{310,311}-dj{main}-{unittest,pytest}
[testenv]
@ -15,6 +15,7 @@ deps =
dj32: Django>=3.2,<4
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
djmain: https://github.com/django/django/archive/main.tar.gz
pytest: pytest
pytest: pytest-cov