Skip to content

Commit ecd6051

Browse files
committed
Drop support for Python 3.8 as well
It reached EOL earlier this month: https://devguide.python.org/versions/
1 parent 102edd7 commit ecd6051

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
fail-fast: false
2525
matrix:
2626
python-version:
27-
- "3.8"
2827
- "3.9"
2928
- "3.10"
3029
- "3.11"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [{name = "Tim Allen", email = "[email protected]"},]
44
description = "Django REST Framework renderer for Excel spreadsheet (xlsx) files."
55
dynamic = ["version"]
66
readme = "README.md"
7-
requires-python = ">=3.8"
7+
requires-python = ">=3.9"
88
keywords = ["djangorestframework", "django rest framework", "excel", "spreadsheet", "rest", "restful", "api", "xls", "xlsx", "openpyxl"]
99
license = {text = "BSD-3-Clause"}
1010
classifiers = [

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-
py{38,39,310,311}-dj42
3+
py{39,310,311}-dj42
44
py{310,311,312}-dj50
55
py{310,311,312}-dj51
66
skipsdist = True

0 commit comments

Comments
 (0)