Confrim Django 5.0 and drop django 4.1

This commit is contained in:
Hasan Ramezani 2023-12-29 18:03:43 +03:30
parent 5523b50c2f
commit eaaa631205
No known key found for this signature in database
GPG key ID: 36462AEA74DF3539
4 changed files with 8 additions and 6 deletions

View file

@ -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)

View file

@ -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

View file

@ -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",
],
)

View file

@ -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