Skip to content

Commit

Permalink
Merge pull request #518 from browniebroke/feat/django-4.2
Browse files Browse the repository at this point in the history
Add official support for Django 4.2
  • Loading branch information
Natim authored Apr 18, 2023
2 parents 0047a78 + d65b916 commit 796f0fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
~~~~~~~~~~~~~~~~~~

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
Expand Down

0 comments on commit 796f0fa

Please sign in to comment.