diff --git a/CHANGELOG.md b/CHANGELOG.md index 9001a6cf..2ca53bb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## 2.5.3 * Stop packaging the 'tests' module into the release wheel file +* Add Django 3.2 support ## 2.5.2 diff --git a/setup.py b/setup.py index 6811e5cf..fa7082e3 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ def get_version(): "Framework :: Django :: 2.2", "Framework :: Django :: 3.0", "Framework :: Django :: 3.1", + "Framework :: Django :: 3.2", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", diff --git a/tox.ini b/tox.ini index 26287d8a..c9cd9e6a 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ envlist = py27-django111 py{35,36,37,38}-django{111,20,21} py{35,36,37,38,39}-django22 - py{36,37,38,39}-django{30,31} + py{36,37,38,39}-django{30,31,32} lint [gh-actions] @@ -26,6 +26,7 @@ deps = django22: django>=2.2,<2.3 django30: django>=3.0,<3.1 django31: django>=3.1,<3.2 + django32: django>=3.2,<3.3 [testenv:lint] basepython = python3.6