Skip to content

Commit

Permalink
Removes <3.1 requirement
Browse files Browse the repository at this point in the history
3.1 was a red herrring. The root cause of test failures was in all-auth
  • Loading branch information
iMerica committed Nov 12, 2020
1 parent 817d0af commit 7986184
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dj_rest_auth/__version__.py
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
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={
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 7986184

Please sign in to comment.