diff --git a/README.md b/README.md index e4cf75e..a4fe0e8 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Drop-in API endpoints for handling authentication securely in Django Rest Framew with SPAs (e.g React, Vue, Angular), and Mobile applications. ## Requirements -- Django 2 or 3 (<3.1) +- Django 2 or 3 - Python 3 ## Quick Setup diff --git a/dj_rest_auth/__version__.py b/dj_rest_auth/__version__.py index 59781b0..64e749f 100644 --- a/dj_rest_auth/__version__.py +++ b/dj_rest_auth/__version__.py @@ -1,7 +1,7 @@ __title__ = 'dj-rest-auth' __description__ = 'Authentication and Registration in Django Rest Framework.' __url__ = 'http://github.com/jazzband/dj-rest-auth' -__version__ = '2.0.0' +__version__ = '2.0.1' __author__ = '@iMerica https://github.com/iMerica' __author_email__ = 'imichael@pm.me' __license__ = 'MIT' diff --git a/setup.py b/setup.py index 49feaae..860161f 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( keywords='django rest auth registration rest-framework django-registration api', zip_safe=False, install_requires=[ - 'Django>=2.0,<3.1', + 'Django>=2.0', 'djangorestframework>=3.7.0', ], extras_require={ diff --git a/tox.ini b/tox.ini index 2637ce3..6e30bcc 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ commands = deps = -rdj_rest_auth/tests/requirements.pip django2: Django>=2.2,<2.3 - django3: Django>=3.0,<3.1 + django3: Django>=3.1.3 # Configuration for coverage and flake8 is being set in `./setup.cfg` [testenv:coverage]