diff --git a/CHANGES.rst b/CHANGES.rst index eaa8376..984a404 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,3 +6,4 @@ Unreleased ---------- - Remove Django 3.0 support. +- Add Django 3.2 support. diff --git a/docs/source/installation.rst b/docs/source/installation.rst index c659deb..1467bcc 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -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 and 3.1. The latest test report can be found +Auditlog is currently tested with Python 3.6 - 3.8 and Django 2.2, 3.1 and 3.2. The latest test report can be found at https://github.com/jazzband/django-auditlog/actions. Adding Auditlog to your Django application diff --git a/setup.py b/setup.py index 9b4542c..58546a9 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ setup( "Framework :: Django", "Framework :: Django :: 2.2", "Framework :: Django :: 3.1", + "Framework :: Django :: 3.2", "License :: OSI Approved :: MIT License", ], ) diff --git a/tox.ini b/tox.ini index 530aa72..08e978f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - {py36,py37,py38,py39}-django-{22,31} + {py36,py37,py38,py39}-django-{22,31,32} py38-docs py38-qa @@ -11,6 +11,7 @@ commands = deps = django-22: Django>=2.2,<2.3 django-31: Django>=3.1,<3.2 + django-32: Django>=3.2,<3.3 # Test requirements coverage codecov