From ac3939cfced943cc9625fa8b146197f0632b65ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sun, 19 Dec 2021 16:33:41 +0100 Subject: [PATCH] build: update setup.py to require at least django 2.2 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8ab670b..8e1eb60 100644 --- a/setup.py +++ b/setup.py @@ -108,7 +108,7 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 2', ], - install_requires=['django>=1.11, <2.3', 'pyproj', 'requests'], + install_requires=['django>=2.2, <2.3', 'pyproj', 'requests'], zip_safe=False, cmdclass={ 'build': build,