Merge pull request #518 from browniebroke/feat/django-4.2

Add official support for Django 4.2
This commit is contained in:
Rémy HUBSCHER 2023-04-18 14:02:12 +02:00 committed by GitHub
commit 796f0fac5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View file

@ -5,11 +5,15 @@ v3.0.0 (future)
~~~~~~~~~~~~~~~~~~~
* Refactor database backend
Backward incompatible changes:
remove 'constance.backends.database' from INSTALLED_APPS
Backward incompatible changes:
remove ``'constance.backends.database'`` from ``INSTALLED_APPS``
* Dropped support for python < 3.7 and django < 3.2
* 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