From ccd0823ee8d519ab5c6796c1a9f447ed61dd1123 Mon Sep 17 00:00:00 2001 From: Raphael Gaschignard Date: Thu, 26 Oct 2023 10:25:42 +0900 Subject: [PATCH] Update setup.cfg to properly describe the right minimum Django and Python versions --- CONTRIBUTING.rst | 1 + setup.cfg | 9 +++------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 24e8ec1f..3751c279 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -89,6 +89,7 @@ These steps need to happen by a release maintainer. To make a release, the following needs to happen: +- Make sure that ``setup.cfg`` is set up properly w/r/t Python and Django requirements - Bump the version number in ``taggit/__init__.py`` - Update the changelog (making sure to add the (Unreleased) section to the top) - Get those changes onto the ``master`` branch diff --git a/setup.cfg b/setup.cfg index 086949a9..88504a01 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,17 +11,14 @@ classifiers = Development Status :: 5 - Production/Stable Environment :: Web Environment Framework :: Django - Framework :: Django :: 3.2 - Framework :: Django :: 4.0 Framework :: Django :: 4.1 + Framework :: Django :: 4.2 Intended Audience :: Developers License :: OSI Approved :: BSD License Operating System :: OS Independent Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.6 - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 @@ -32,9 +29,9 @@ project_urls = Tracker = https://github.com/jazzband/django-taggit/issues [options] -python_requires = >=3.6 +python_requires = >=3.8 packages = find: -install_requires = Django>=3.2 +install_requires = Django>=4.1 include_package_data = true zip_safe = false