diff --git a/CHANGES.rst b/CHANGES.rst index 389d676d..93b99c79 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,15 @@ Changes ======= +1.0(unreleased) +--------------- +- Drop support for Django <4.2 +- Drop support for Python <3.8 +- Add support for Django 4.2, 5.0, 5.1 +- Add support for Python 3.11, 3.12 +- Fix Compatibility issues with Django 5.1 + + 1.0b1 (unreleased) ------------------ - Add support for Django 3.1 diff --git a/README.rst b/README.rst index 784f8a33..b4f45331 100644 --- a/README.rst +++ b/README.rst @@ -54,7 +54,7 @@ soon as near-full coverage is reached. Compatibility ============= -Currently, django-newsletter officially supports Django 2.2.x LTS, 3.1.x and 3.2.x and Python 3.7 through 3.10. +Currently, django-newsletter officially supports Django 4.2.x LTS, 5.0.x and 5.1.x and Python 3.8 through 3.12. Requirements ============ diff --git a/setup.py b/setup.py index f0201bc8..0ad7d410 100755 --- a/setup.py +++ b/setup.py @@ -55,23 +55,24 @@ url='http://github.com/jazzband/django-newsletter/', packages=find_packages(exclude=("tests", "test_project")), include_package_data=True, - python_requires='>=3.7', + python_requires='>=3.8', classifiers=[ 'Development Status :: 6 - Mature', 'Environment :: Web Environment', 'Framework :: Django', - 'Framework :: Django :: 2.2', - 'Framework :: Django :: 3.1', - 'Framework :: Django :: 3.2', + 'Framework :: Django :: 4.2', + 'Framework :: Django :: 5.0', + 'Framework :: Django :: 5.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Affero General Public License v3', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Utilities' ],