Skip to content

Commit f8345bf

Browse files
committed
Drop support form python 3.8
1 parent f5f1c53 commit f8345bf

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ classifiers = [
2323
"License :: OSI Approved :: MIT License",
2424
"Operating System :: OS Independent",
2525
'Programming Language :: Python',
26-
'Programming Language :: Python :: 3.8',
2726
'Programming Language :: Python :: 3.9',
2827
'Programming Language :: Python :: 3.10',
2928
'Programming Language :: Python :: 3.11',
3029
'Programming Language :: Python :: 3.12',
30+
'Programming Language :: Python :: 3.13',
3131
'Framework :: Django',
3232
"Topic :: Software Development :: Libraries :: Application Frameworks",
3333
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -36,7 +36,7 @@ include = ["drf_simple_api_errors", "LICENSE.md"]
3636

3737

3838
[tool.poetry.dependencies]
39-
python = ">=3.8.1,<4.0"
39+
python = ">=3.9,<4.0"
4040

4141
Django = ">=2.2"
4242
djangorestframework = ">=3.0"

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[tox]
2-
envlist = py38, py39, py310, py311, py312, py313
2+
envlist = py39, py310, py311, py312, py313
33
isolated_build = true
44

55
[gh-actions]
66
python =
7-
3.8: py38
87
3.9: py39
98
3.10: py310
109
3.11: py311

0 commit comments

Comments
 (0)