Skip to content

Commit ccde000

Browse files
committed
Dropped support for EOL Python 3.8.
1 parent 2a644e1 commit ccde000

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1717

1818
steps:
1919
- uses: actions/checkout@v4

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Version 25.1 (Unreleased)
77
You should use `drf-spectacular <https://drf-spectacular.readthedocs.io/en/latest/>`_
88
for generating OpenAPI schemas with DRF.
99

10+
* Dropped support for EOL Python 3.8.
11+
1012
Version 24.3 (2024-08-02)
1113
-------------------------
1214

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,12 @@ classifiers = [
2121
"Framework :: Django :: 5.1",
2222
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",
2928
]
30-
requires-python = ">=3.8"
29+
requires-python = ">=3.9"
3130
dependencies = ["Django>=4.2"]
3231
dynamic = ["version"]
3332

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
{py38, py39, py310, py311, py312}-django42,
3+
{py39, py310, py311, py312}-django42,
44
{py310, py311, py312}-django50,
55
{py310, py311, py312}-django51,
66
{py310, py311, py312}-latest,

0 commit comments

Comments
 (0)