Drop Python 3.9 support

This probably means we'll move to Django 5.2 no sooner than October 2025.

See https://docs.djangoproject.com/en/5.2/faq/install/
This commit is contained in:
Klaas van Schelven
2025-04-26 11:12:04 +02:00
parent 1dfbaf5b2a
commit 9157631efa
2 changed files with 6 additions and 2 deletions

View File

@@ -12,10 +12,14 @@ authors = [
]
description = "Self-hosted Error Tracking"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version", "dependencies"]