build: increase minimum supported Python version to 3.10

Python 3.9 is not supported since 2025-10-31:
https://devguide.python.org/versions/

mypy just dropped support for Python 3.9:
<1a6ff59049>
This commit is contained in:
link2xt
2025-11-28 20:55:34 +00:00
committed by l
parent 2854f87a9d
commit 9aba299c75
4 changed files with 7 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ name = "deltachat"
version = "2.28.0"
description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat"
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.10"
authors = [
{ name = "holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors" },
]
@@ -23,7 +23,6 @@ classifiers = [
dependencies = [
"cffi>=1.0.0",
"imap-tools",
"importlib_metadata;python_version<'3.8'",
"pluggy",
"requests",
]