diff --git a/.travis.yml b/.travis.yml index 4f5cb28a..4c9e9fe4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ python: - 3.6 - 3.7 - 3.8 + - 3.9 jobs: fast_finish: true include: diff --git a/README.rst b/README.rst index a9cfdf88..34efd1a0 100644 --- a/README.rst +++ b/README.rst @@ -65,7 +65,7 @@ In your code: Releases ======== -Latest release is 3.0.1. It supports Python 3.6, 3.7 and 3.8 with Django 2.2 and 3.0 +Latest release is 3.1.0. It supports Python 3.6+ with Django 2.2 and 3.0 Previous releases can be found on github, but they are no longer maintained. diff --git a/setup.py b/setup.py index 41cfcd7f..8ee5f704 100755 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ def read_file(filename): "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules", ], diff --git a/tox.ini b/tox.ini index f35576e8..475cd23f 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ envlist = py36-django{22,30}, py37-django{22,30}, py38-django{22,30}, + py39-django{22,30}, flake8 [testenv]