mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Confrim Django 5.0 and drop django 4.1 (#598)
This commit is contained in:
parent
5523b50c2f
commit
387b0cec22
4 changed files with 8 additions and 6 deletions
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
#### Improvements
|
||||
- feat: If any receiver returns False, no logging will be made. This can be useful if logging should be conditionally enabled / disabled ([#590](https://github.com/jazzband/django-auditlog/pull/590))
|
||||
- Django: Confirm Django 5.0 support ([#598](https://github.com/jazzband/django-auditlog/pull/598))
|
||||
- Django: Drop Django 4.1 support ([#598](https://github.com/jazzband/django-auditlog/pull/598))
|
||||
|
||||
## 3.0.0-beta.3 (2023-11-13)
|
||||
|
||||
|
|
|
|||
|
|
@ -12,9 +12,9 @@ The repository can be found at https://github.com/jazzband/django-auditlog/.
|
|||
**Requirements**
|
||||
|
||||
- Python 3.8 or higher
|
||||
- Django 3.2, 4.1 and 4.2
|
||||
- Django 3.2, 4.2 and 5.0
|
||||
|
||||
Auditlog is currently tested with Python 3.8+ and Django 3.2, 4.1 and 4.2. The latest test report can be found
|
||||
Auditlog is currently tested with Python 3.8+ and Django 3.2, 4.2 and 5.0. The latest test report can be found
|
||||
at https://github.com/jazzband/django-auditlog/actions.
|
||||
|
||||
Adding Auditlog to your Django application
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -39,8 +39,8 @@ setup(
|
|||
"Programming Language :: Python :: 3.12",
|
||||
"Framework :: Django",
|
||||
"Framework :: Django :: 3.2",
|
||||
"Framework :: Django :: 4.1",
|
||||
"Framework :: Django :: 4.2",
|
||||
"Framework :: Django :: 5.0",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
6
tox.ini
6
tox.ini
|
|
@ -1,8 +1,8 @@
|
|||
[tox]
|
||||
envlist =
|
||||
{py38,py39,py310}-django32
|
||||
{py38,py39,py310,py311}-django{41,42}
|
||||
{py310,py311,py312}-djangomain
|
||||
{py38,py39,py310,py311}-django42
|
||||
{py310,py311,py312}-django{50,main}
|
||||
py38-docs
|
||||
py38-lint
|
||||
|
||||
|
|
@ -14,8 +14,8 @@ commands =
|
|||
coverage xml
|
||||
deps =
|
||||
django32: Django>=3.2,<3.3
|
||||
django41: Django>=4.1,<4.2
|
||||
django42: Django>=4.2,<4.3
|
||||
django50: Django>=5.0,<5.1
|
||||
djangomain: https://github.com/django/django/archive/main.tar.gz
|
||||
# Test requirements
|
||||
coverage
|
||||
|
|
|
|||
Loading…
Reference in a new issue