build: increase minimum supported Python version to 3.8

Python 3.7 is not supported on GitHub Actions ubuntu-latest runner:
https://github.com/actions/setup-python/issues/962

Python 3.7 has reached EOL more than 1 year ago anyway,
so not worth the effort supporting it.
This commit is contained in:
link2xt
2025-01-09 14:19:49 +00:00
committed by l
parent 7f7c76f706
commit 6e8668e348
5 changed files with 9 additions and 15 deletions

View File

@@ -7,7 +7,7 @@ name = "deltachat"
version = "1.153.0"
description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
authors = [
{ name = "holger krekel, Floris Bruynooghe, Bjoern Petersen and contributors" },
]