diff --git a/docs/changes.rst b/docs/changes.rst index 3d573321..6cff8124 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -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) ~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 47e2a205..7e3062c2 100644 --- a/setup.py +++ b/setup.py @@ -37,6 +37,7 @@ def find_version(*file_paths): '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', diff --git a/tox.ini b/tox.ini index 600099e5..448f76aa 100644 --- a/tox.ini +++ b/tox.ini @@ -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