details: https://code.tryton.org/mt940/commit/bec86759e93a
branch: default
user: Cédric Krier <[email protected]>
date: Thu Mar 19 09:18:24 2026 +0100
description:
Remove support for Python older than 3.9
diffstat:
.gitlab-ci.yml | 2 +-
CHANGELOG | 1 +
pyproject.toml | 2 +-
tox.ini | 2 +-
4 files changed, 4 insertions(+), 3 deletions(-)
diffs (44 lines):
diff -r 67bcf3623e1d -r bec86759e93a .gitlab-ci.yml
--- a/.gitlab-ci.yml Mon Mar 16 14:33:30 2026 +0100
+++ b/.gitlab-ci.yml Thu Mar 19 09:18:24 2026 +0100
@@ -57,7 +57,7 @@
- tox -e "py${PYTHON_VERSION/./}" -- -v --output-file junit.xml
parallel:
matrix:
- - PYTHON_VERSION: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11",
"3.12", "3.13", "3.14"]
+ - PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
test-tox-pypy:
extends: .test-tox
diff -r 67bcf3623e1d -r bec86759e93a CHANGELOG
--- a/CHANGELOG Mon Mar 16 14:33:30 2026 +0100
+++ b/CHANGELOG Thu Mar 19 09:18:24 2026 +0100
@@ -1,3 +1,4 @@
+* Remove support for Python older than 3.9
* Upgrade to pyproject
* Add fund code to transaction
diff -r 67bcf3623e1d -r bec86759e93a pyproject.toml
--- a/pyproject.toml Mon Mar 16 14:33:30 2026 +0100
+++ b/pyproject.toml Thu Mar 19 09:18:24 2026 +0100
@@ -5,7 +5,7 @@
[project]
name = 'mt940'
dynamic = ['version', 'authors']
-requires-python = '>=3.5'
+requires-python = '>=3.9'
maintainers = [
{name = "Tryton", email = "[email protected]"},
]
diff -r 67bcf3623e1d -r bec86759e93a tox.ini
--- a/tox.ini Mon Mar 16 14:33:30 2026 +0100
+++ b/tox.ini Thu Mar 19 09:18:24 2026 +0100
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
-envlist = py35, py36, py37, py38, py39, py310, py311, py312, py313, py314,
pypy3
+envlist = py39, py310, py311, py312, py313, py314, pypy3
[testenv]
usedevelop = true