mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
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:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -39,7 +39,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
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]
|
db: [sqlite, mysql, postgres]
|
||||||
include:
|
include:
|
||||||
- db: mysql
|
- db: mysql
|
||||||
|
|||||||
@@ -12,10 +12,14 @@ authors = [
|
|||||||
]
|
]
|
||||||
description = "Self-hosted Error Tracking"
|
description = "Self-hosted Error Tracking"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.10"
|
||||||
license-files = ["LICENSE"]
|
license-files = ["LICENSE"]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Python :: 3",
|
"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"]
|
dynamic = ["version", "dependencies"]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user