From 854834a8cfb3ee72dff6f35c1a0422c847b80ab9 Mon Sep 17 00:00:00 2001 From: Mahmoud Adel Date: Sat, 8 Aug 2020 02:01:21 +0200 Subject: [PATCH] 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 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index fc9811d..8e706f5 100644 --- a/setup.py +++ b/setup.py @@ -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'],