diff --git a/README.rst b/README.rst index 62059fe..7683b80 100644 --- a/README.rst +++ b/README.rst @@ -58,6 +58,13 @@ html version using the setup.py:: Changelog: ========== +0.15 (unreleased): +------------------ + +* Moved CI to GitHub Actions. +* Add Django 3.0 and 3.1 support. +* Add Python 3.6 and 3.8 support. + 0.14 (2020-02-07): ------------------ diff --git a/setup.py b/setup.py index 4f87963..45da3d2 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,9 @@ setup( "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Framework :: Django", ], install_requires=["django"],