From 5a38d13c16d5797bcb086eda8645bc96f93ecbaf Mon Sep 17 00:00:00 2001 From: Rakan Alhneiti Date: Fri, 13 Oct 2017 00:22:20 +0200 Subject: [PATCH] Fix DRF version --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 3fa91ff..bbb62ff 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ Django django-celery<4.0 pushjack==1.3.0 -djangorestframework>3.0 +djangorestframework<3.7.0 diff --git a/setup.py b/setup.py index dee1a87..acdbf3c 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,6 @@ 'pushjack==1.3.0' ], extras_require={ - 'rest_api': ['djangorestframework>=3.0,<3.3'] + 'rest_api': ['djangorestframework<3.7.0'] } )