From 33ce986e6ef30727a36c4bdc0f87c44b2cb2df3d Mon Sep 17 00:00:00 2001 From: Rohit Reddy Abbadi Date: Tue, 22 Mar 2022 23:46:32 +0530 Subject: [PATCH] add support for django 4 fix deprecation warning for `ugettext_lazy` and update django supported version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ef8755a..750cf16 100755 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ 'Topic :: Software Development :: Libraries :: Python Modules', ], install_requires=[ - 'Django >= 1.10, < 4.0', + 'Django >= 1.10, < 5.0', 'python-dateutil >= 2.6.0', ], tests_require=test_deps,