From adeb2a7f073b1a6cbb3c72c6b6a23d55e1e7386e Mon Sep 17 00:00:00 2001 From: Austin Macdonald Date: Mon, 15 Jul 2019 13:10:46 -0400 Subject: [PATCH] Pin DRF to < 3.10 due to breaking changes We cannot fix the incompatibility yet because another dependency, drf-yasg does not support drf 3.10 yet. https://github.com/axnsan12/drf-yasg/issues/410 https://pulp.plan.io/issues/5125 re #5125 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2a42834ed4..a787288370 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ 'coreapi', 'Django~=2.2', # LTS version, switch only if we have a compelling reason to 'django-filter', - 'djangorestframework', + 'djangorestframework<3.10', 'djangorestframework-queryfields', 'drf-nested-routers', 'drf-yasg',