Removes <3.1 requirement

3.1 was a red herrring. The root cause of test failures was in all-auth
This commit is contained in:
Michael 2020-11-11 22:26:51 -06:00
parent 817d0af8ab
commit 7986184821
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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'

View File

@ -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={

View File

@ -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]