Skip to content

Commit

Permalink
Drop support for Python 3.8 as well
Browse files Browse the repository at this point in the history
It reached EOL earlier this month:
https://devguide.python.org/versions/
  • Loading branch information
browniebroke committed Oct 16, 2024
1 parent 102edd7 commit ecd6051
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = [{name = "Tim Allen", email = "[email protected]"},]
description = "Django REST Framework renderer for Excel spreadsheet (xlsx) files."
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
keywords = ["djangorestframework", "django rest framework", "excel", "spreadsheet", "rest", "restful", "api", "xls", "xlsx", "openpyxl"]
license = {text = "BSD-3-Clause"}
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{38,39,310,311}-dj42
py{39,310,311}-dj42
py{310,311,312}-dj50
py{310,311,312}-dj51
skipsdist = True
Expand Down

0 comments on commit ecd6051

Please sign in to comment.