diff --git a/CHANGELOG.md b/CHANGELOG.md index dbf5eee2e..0a01cd37b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --> ## [Unreleased] +* Fix Django 4.0.0 support ## [1.6.0] 2021-12-19 ### Added diff --git a/README.rst b/README.rst index 06ca3dce7..9af68f81e 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ Requirements ------------ * Python 3.7+ -* Django 2.2, 3.2, or >=4.0.1 +* Django 2.2, 3.2, or >=4.0 * oauthlib 3.1+ Installation diff --git a/docs/index.rst b/docs/index.rst index fdd8131b7..be9041c50 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -22,7 +22,7 @@ Requirements ------------ * Python 3.7+ -* Django 2.2, 3.2, 4.0.1+ +* Django 2.2, 3.2, 4.0+ * oauthlib 3.1+ Index diff --git a/setup.cfg b/setup.cfg index 4a8de4569..103faa832 100644 --- a/setup.cfg +++ b/setup.cfg @@ -32,7 +32,7 @@ zip_safe = False # jwcrypto has a direct dependency on six, but does not list it yet in a release # Previously, cryptography also depended on six, so this was unnoticed install_requires = - django >= 2.2, != 4.0.0 + django >= 2.2 requests >= 2.13.0 oauthlib >= 3.1.0 jwcrypto >= 0.8.0