Skip to content

Commit c515b6e

Browse files
committed
Drop python 3.8; add python 3.13
prompted by the pyproject.toml 'fixes' actually breaking on Python 3.8 but Python 3.8 is EOL so we might as well get rid of it
1 parent 09bc757 commit c515b6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
39+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
4040

4141
steps:
4242
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
]
1313
description = "Verbatim copy of Django's CSRF middleware, but with more verbose error messages."
1414
readme = "README.md"
15-
requires-python = ">=3.8"
15+
requires-python = ">=3.9"
1616
license = "BSD-3-Clause"
1717
classifiers = [
1818
"Framework :: Django",

0 commit comments

Comments
 (0)