mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2025-07-10 16:02:19 +03:00
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:
parent
817d0af8ab
commit
7986184821
|
@ -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.
|
with SPAs (e.g React, Vue, Angular), and Mobile applications.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
- Django 2 or 3 (<3.1)
|
- Django 2 or 3
|
||||||
- Python 3
|
- Python 3
|
||||||
|
|
||||||
## Quick Setup
|
## Quick Setup
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
__title__ = 'dj-rest-auth'
|
__title__ = 'dj-rest-auth'
|
||||||
__description__ = 'Authentication and Registration in Django Rest Framework.'
|
__description__ = 'Authentication and Registration in Django Rest Framework.'
|
||||||
__url__ = 'http://github.com/jazzband/dj-rest-auth'
|
__url__ = 'http://github.com/jazzband/dj-rest-auth'
|
||||||
__version__ = '2.0.0'
|
__version__ = '2.0.1'
|
||||||
__author__ = '@iMerica https://github.com/iMerica'
|
__author__ = '@iMerica https://github.com/iMerica'
|
||||||
__author_email__ = 'imichael@pm.me'
|
__author_email__ = 'imichael@pm.me'
|
||||||
__license__ = 'MIT'
|
__license__ = 'MIT'
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -27,7 +27,7 @@ setup(
|
||||||
keywords='django rest auth registration rest-framework django-registration api',
|
keywords='django rest auth registration rest-framework django-registration api',
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Django>=2.0,<3.1',
|
'Django>=2.0',
|
||||||
'djangorestframework>=3.7.0',
|
'djangorestframework>=3.7.0',
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -19,7 +19,7 @@ commands =
|
||||||
deps =
|
deps =
|
||||||
-rdj_rest_auth/tests/requirements.pip
|
-rdj_rest_auth/tests/requirements.pip
|
||||||
django2: Django>=2.2,<2.3
|
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`
|
# Configuration for coverage and flake8 is being set in `./setup.cfg`
|
||||||
[testenv:coverage]
|
[testenv:coverage]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user