From b5bd134d69a98aff260dd000c1619f583b9bb0be Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 10 Mar 2022 16:55:17 +0100 Subject: [PATCH] setup.py: limit compatibility to django<2.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a6acaaf..ac7a9fc 100644 --- a/setup.py +++ b/setup.py @@ -121,7 +121,7 @@ setup( 'Programming Language :: Python', ], install_requires=[ - 'django>=1.8', + 'django>=1.8,<2.3', 'django-jsonfield', 'djangorestframework>=3.3', 'requests',