mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
Remove Django 3.0 support.
This commit is contained in:
parent
457b04b448
commit
ca5aa82714
4 changed files with 10 additions and 4 deletions
8
CHANGES.rst
Normal file
8
CHANGES.rst
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
Changes
|
||||
=======
|
||||
|
||||
|
||||
Unreleased
|
||||
----------
|
||||
|
||||
- Remove Django 3.0 support.
|
||||
|
|
@ -14,7 +14,7 @@ The repository can be found at https://github.com/jazzband/django-auditlog/.
|
|||
- Python 3.6 or higher
|
||||
- Django 2.2 or higher
|
||||
|
||||
Auditlog is currently tested with Python 3.6 - 3.8 and Django 2.2, 3.0 and 3.1. The latest test report can be found
|
||||
Auditlog is currently tested with Python 3.6 - 3.8 and Django 2.2 and 3.1. 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
|
|
@ -32,7 +32,6 @@ setup(
|
|||
"Programming Language :: Python :: 3.9",
|
||||
"Framework :: Django",
|
||||
"Framework :: Django :: 2.2",
|
||||
"Framework :: Django :: 3.0",
|
||||
"Framework :: Django :: 3.1",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
],
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -1,6 +1,6 @@
|
|||
[tox]
|
||||
envlist =
|
||||
{py36,py37,py38,py39}-django-{22,30,31}
|
||||
{py36,py37,py38,py39}-django-{22,31}
|
||||
py38-docs
|
||||
py38-qa
|
||||
|
||||
|
|
@ -10,7 +10,6 @@ commands =
|
|||
coverage xml
|
||||
deps =
|
||||
django-22: Django>=2.2,<2.3
|
||||
django-30: Django>=3.0,<3.1
|
||||
django-31: Django>=3.1,<3.2
|
||||
# Test requirements
|
||||
coverage
|
||||
|
|
|
|||
Loading…
Reference in a new issue