From 2ba6d910a38688924b219f598185ef6cc0d188da Mon Sep 17 00:00:00 2001 From: Kristof Daja <22156894+theriverman@users.noreply.github.com> Date: Sun, 24 Mar 2024 12:33:55 +0100 Subject: [PATCH] Minimum versions stepped --- requirements.txt | 2 +- setup.py | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index c596115..ac2ce82 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Django>=2.2.2 +Django>=3.2 minio>=7.0.2 Pillow setuptools diff --git a/setup.py b/setup.py index 79d7b22..171a190 100644 --- a/setup.py +++ b/setup.py @@ -24,15 +24,13 @@ author='Kristof Daja (theriverman)', author_email='kristof@daja.hu', install_requires=[ - 'Django>=2.2.2', + 'Django>=3.2', 'minio>=7.0.2' ], classifiers=[ 'Environment :: Web Environment', 'Framework :: Django', - 'Framework :: Django :: 2.2', - 'Framework :: Django :: 3.0', - 'Framework :: Django :: 3.1', + 'Framework :: Django :: 3.2', 'Framework :: Django :: 4.0', 'Framework :: Django :: 4.1', 'Intended Audience :: Developers', @@ -43,6 +41,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',