Skip to content

Commit ca57e3a

Browse files
committed
Update Python/Django versions in setup.py and add release notes
1 parent 533493e commit ca57e3a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Changelog
55
~~~~~~~~~~~~~~~~
66
* Add `UniqueConstraint` support for uniqueness validation (Sage Abdullah)
77
* Remove `pytz` dependency (Sage Abdullah)
8+
* Added Django 5.1 and Python 3.13 support
9+
* Removed Django 3.2 and Python 3.8 support
810

911
6.3 (26.02.2024)
1012
~~~~~~~~~~~~~~~~

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
packages=find_packages(exclude=('tests*',)),
1616
license='BSD',
1717
long_description=open('README.rst').read(),
18-
python_requires=">=3.8",
18+
python_requires=">=3.9",
1919
install_requires=[
20-
"django>=3.2",
20+
"django>=4.2",
2121
],
2222
extras_require={
2323
'taggit': ['django-taggit>=3.1'],
@@ -30,11 +30,11 @@
3030
'Operating System :: OS Independent',
3131
'Programming Language :: Python',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.8',
3433
'Programming Language :: Python :: 3.9',
3534
'Programming Language :: Python :: 3.10',
3635
'Programming Language :: Python :: 3.11',
3736
'Programming Language :: Python :: 3.12',
37+
'Programming Language :: Python :: 3.13',
3838
'Programming Language :: Python :: 3 :: Only',
3939
'Framework :: Django',
4040
],

0 commit comments

Comments
 (0)