Skip to content

Commit

Permalink
Update setup.cfg to properly describe the right minimum Django and Py…
Browse files Browse the repository at this point in the history
…thon versions
  • Loading branch information
rtpg committed Oct 26, 2023
1 parent ee1e98c commit ccd0823
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 3 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit ccd0823

Please sign in to comment.