From 914074056c810b7bf15f00546dd9fb05d532acdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Leichtfu=C3=9F?= Date: Tue, 2 May 2023 15:55:34 +0200 Subject: [PATCH] [setup] allow Django-4.2 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 128354e..ecdca1f 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setup( packages=find_packages(exclude=["tests"]), include_package_data=True, install_requires=[ - "Django>=2.2,<4.2", + "Django>=2.2,<5.0", ], classifiers=[ dev_status, @@ -53,6 +53,7 @@ setup( "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", "Framework :: Django :: 4.1", + "Framework :: Django :: 4.2", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License",