mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Add support for Django 5.2 (#730)
* Add support for Django 5.2 * Update setup.py Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com> * docs: mention Django 5.2 in requirements and changelog * docs: only keep Django 5.2 support line in changelog improvements * docs: move and update Django 5.2 changelog entry with PR reference * Update CHANGELOG.md --------- Co-authored-by: Hasan Ramezani <hasan.r67@gmail.com>
This commit is contained in:
parent
6184ec8adb
commit
8fe73932a0
4 changed files with 7 additions and 2 deletions
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
#### Improvements
|
||||
|
||||
- Confirm Django 5.2 support. ([#730](https://github.com/jazzband/django-auditlog/pull/730))
|
||||
|
||||
#### Fixes
|
||||
|
||||
## 3.2.0 (2025-06-26)
|
||||
|
|
|
|||
|
|
@ -12,9 +12,9 @@ The repository can be found at https://github.com/jazzband/django-auditlog/.
|
|||
**Requirements**
|
||||
|
||||
- Python 3.9 or higher
|
||||
- Django 4.2, 5.0 and 5.1
|
||||
- Django 4.2, 5.0, 5.1, and 5.2
|
||||
|
||||
Auditlog is currently tested with Python 3.9+ and Django 4.2, 5.0 and 5.1. The latest test report can be found
|
||||
Auditlog is currently tested with Python 3.9+ and Django 4.2, 5.0, 5.1, and 5.2. The latest test report can be found
|
||||
at https://github.com/jazzband/django-auditlog/actions.
|
||||
|
||||
Adding Auditlog to your Django application
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -41,6 +41,7 @@ setup(
|
|||
"Framework :: Django :: 4.2",
|
||||
"Framework :: Django :: 5.0",
|
||||
"Framework :: Django :: 5.1",
|
||||
"Framework :: Django :: 5.2",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -3,6 +3,7 @@ envlist =
|
|||
{py39,py310,py311}-django42
|
||||
{py310,py311,py312}-django50
|
||||
{py310,py311,py312,py313}-django51
|
||||
{py310,py311,py312,py313}-django52
|
||||
{py312,py313}-djangomain
|
||||
py39-docs
|
||||
py39-lint
|
||||
|
|
@ -19,6 +20,7 @@ deps =
|
|||
django42: Django>=4.2,<4.3
|
||||
django50: Django>=5.0,<5.1
|
||||
django51: Django>=5.1,<5.2
|
||||
django52: Django>=5.2,<5.3
|
||||
djangomain: https://github.com/django/django/archive/main.tar.gz
|
||||
# Test requirements
|
||||
coverage
|
||||
|
|
|
|||
Loading…
Reference in a new issue