Drop Python 3.9 support

In principle, Python 3.9 has ~1 month of life in it (its own EOL).
I'm OK with that in practice for main (we haven't released Bugsink yet),
as well as considering the following overview of popular Linux distros
and their Python versions (which will have a much stronger influence
on practical Python deployment in the wild than whatever the PSF says):

Not affected:

* Ubuntu 22.04 LTS (EOL Apr 2027) has Python 3.10
* Ubuntu 24.04 LTS (EOL Apr 2029) has Python 3.12
* Debian 12 Bookworm (EOL Jun 2028) has Python 3.11
* RHEL 9 (EOL May 2032) default 3.9 but also offers 3.11 and 3.12
* The Docker image we use has Python version configurable (we use 3.12)

Affected:

* Debian 11 Bullseye (EOL Aug 2026) has Python 3.9

Given Bugsink's own age my guess is "no one's on Bullseye".
This commit is contained in:
Klaas van Schelven
2025-09-04 11:29:49 +02:00
parent 0764024389
commit 12af5302ef
2 changed files with 2 additions and 2 deletions

View File

@@ -96,7 +96,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
db: [sqlite, mysql, postgres]
include:
- db: mysql

View File

@@ -12,7 +12,7 @@ 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",