From e3f38a3728ea587d0d453f768e60cb7ce35a1d86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 23 Sep 2022 09:33:59 +0200 Subject: [PATCH] build: limit to djangorestframework<3.14 (#69477) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 414cfa24..8dc2695a 100644 --- a/setup.py +++ b/setup.py @@ -161,7 +161,7 @@ setup( install_requires=[ 'django>=2.2, <3.3', 'gadjo', - 'djangorestframework>=3.4', + 'djangorestframework>=3.4,<3.14', 'django-filter', 'vobject', 'python-dateutil',