From aae8fa557b01209a651e3338cb62e638827e7dac Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Tue, 2 Apr 2024 15:08:19 -0400 Subject: [PATCH] docs: Update classifiers to match current state. We dropped support for Django 3.2 and added support for Python 3.11 and 12 in recent PRs but we didn't update the classifiers so doing that here. Python Upgarde PR: https://github.com/openedx/django-config-models/pull/333 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 979194f..6bab99d 100644 --- a/setup.py +++ b/setup.py @@ -117,12 +117,13 @@ def is_requirement(line): classifiers=[ 'Development Status :: 3 - Alpha', 'Framework :: Django', - 'Framework :: Django :: 3.2', 'Framework :: Django :: 4.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Natural Language :: English', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], )