Skip to content

Commit fd76a03

Browse files
committed
Removing Python 3.8 support
1 parent 71953c2 commit fd76a03

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
DJANGO_DATABASE_PASSWORD_MYSQL: root
4242
strategy:
4343
matrix:
44-
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
44+
python-version: [3.9, '3.10', '3.11', '3.12', '3.13']
4545
django-version:
4646
- '>=5.0,<6.0'
4747
- '>=4.2,<5.0'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ def read(filepath):
3939
install_requires=[
4040
"django>=4.2",
4141
],
42-
python_requires=">=3.8",
42+
python_requires=">=3.9",
4343
classifiers=[
4444
"Development Status :: 5 - Production/Stable",
4545
"Environment :: Web Environment",
4646
"Intended Audience :: Developers",
4747
"License :: OSI Approved :: BSD License",
4848
"Operating System :: OS Independent",
4949
"Programming Language :: Python",
50-
"Programming Language :: Python :: 3.8",
5150
"Programming Language :: Python :: 3.9",
5251
"Programming Language :: Python :: 3.10",
5352
"Programming Language :: Python :: 3.11",
5453
"Programming Language :: Python :: 3.12",
54+
"Programming Language :: Python :: 3.13",
5555
"Framework :: Django",
5656
],
5757
)

0 commit comments

Comments
 (0)