From 5b44fd376dac53db1107a8d92604a85405c3b787 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Wed, 7 Apr 2021 18:09:47 +0200 Subject: [PATCH] revert version cap on Django, so we get 3.2 again --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a44aeb8e..816929f6 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ install_requires = [ 'celery>=4.3.0,<5.0.0,!=4.4.4', # 4.4.4 is missing a dependency 'celery_once>=2.0.1', - 'django>=3.1.1,<3.2.0', + 'django>=3.1.1,<4.0.0', 'django-bootstrap-form', 'django-registration>=3.1', 'django-sortedm2m', @@ -72,11 +72,12 @@ setup( 'Environment :: Web Environment', 'Framework :: Django', 'Framework :: Django :: 3.1', + 'Framework :: Django :: 3.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python', - 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8',