details: https://code.tryton.org/goocalendar/commit/8d683fe227b7
branch: default
user: Cédric Krier <[email protected]>
date: Thu Mar 19 09:27:44 2026 +0100
description:
Remove support for Python older than 3.9
diffstat:
CHANGELOG | 1 +
pyproject.toml | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diffs (20 lines):
diff -r a974dbfe88eb -r 8d683fe227b7 CHANGELOG
--- a/CHANGELOG Mon Mar 16 14:31:20 2026 +0100
+++ b/CHANGELOG Thu Mar 19 09:27:44 2026 +0100
@@ -1,3 +1,4 @@
+* Remove support for Python older than 3.9
* Upgrade to pyproject
Version 0.8.0 - 2023-03-18
diff -r a974dbfe88eb -r 8d683fe227b7 pyproject.toml
--- a/pyproject.toml Mon Mar 16 14:31:20 2026 +0100
+++ b/pyproject.toml Thu Mar 19 09:27:44 2026 +0100
@@ -5,7 +5,7 @@
[project]
name = 'GooCalendar'
dynamic = ['version', 'authors']
-requires-python = '>=3.4'
+requires-python = '>=3.9'
maintainers = [
{name = "Tryton", email = "[email protected]"},
]