At install_requires, changed the versions of Django and djangorestframework to 2.0 and 3.7.0 respectively as path() wasn't introduced before it

This commit is contained in:
Mahmoud Adel 2020-08-08 02:01:21 +02:00
parent a67cdb5a52
commit 854834a8cf

View File

@ -27,8 +27,8 @@ setup(
keywords='django rest auth registration rest-framework django-registration api',
zip_safe=False,
install_requires=[
'Django>=1.11',
'djangorestframework>=3.1.3',
'Django>=2.0',
'djangorestframework>=3.7.0',
],
extras_require={
'with_social': ['django-allauth>=0.25.0'],