details: https://code.tryton.org/python-sql/commit/06bcaf501f32
branch: default
user: Cédric Krier <[email protected]>
date: Thu Mar 19 09:30:31 2026 +0100
description:
Remove support for Python older than 3.9
diffstat:
.gitlab-ci.yml | 2 +-
CHANGELOG | 2 +-
pyproject.toml | 2 +-
tox.ini | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diffs (48 lines):
diff -r 9b36c1048a5d -r 06bcaf501f32 .gitlab-ci.yml
--- a/.gitlab-ci.yml Mon Mar 16 14:28:21 2026 +0100
+++ b/.gitlab-ci.yml Thu Mar 19 09:30:31 2026 +0100
@@ -57,7 +57,7 @@
- tox -e "py${PYTHON_VERSION/./}" -- -v --output-file junit.xml
parallel:
matrix:
- - PYTHON_VERSION: ["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 9b36c1048a5d -r 06bcaf501f32 CHANGELOG
--- a/CHANGELOG Mon Mar 16 14:28:21 2026 +0100
+++ b/CHANGELOG Thu Mar 19 09:30:31 2026 +0100
@@ -4,7 +4,7 @@
* Use the ordinal number as aliases for GROUP BY
* Check the coherence of the aliases of GROUP BY and ORDER BY expressions
* Do not use parameter for EXTRACT field
-* Remove support for Python older than 3.6
+* Remove support for Python older than 3.9
Version 1.7.0 - 2025-11-24
* Add support for Python 3.14
diff -r 9b36c1048a5d -r 06bcaf501f32 pyproject.toml
--- a/pyproject.toml Mon Mar 16 14:28:21 2026 +0100
+++ b/pyproject.toml Thu Mar 19 09:30:31 2026 +0100
@@ -5,7 +5,7 @@
[project]
name = 'python-sql'
dynamic = ['version', 'authors']
-requires-python = '>=3.6'
+requires-python = '>=3.9'
maintainers = [
{name = "Tryton", email = "[email protected]"},
]
diff -r 9b36c1048a5d -r 06bcaf501f32 tox.ini
--- a/tox.ini Mon Mar 16 14:28:21 2026 +0100
+++ b/tox.ini Thu Mar 19 09:30:31 2026 +0100
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
-envlist = py36, py37, py38, py39, py310, py311, py312, py313, py314, pypy3
+envlist = py39, py310, py311, py312, py313, py314, pypy3
[testenv]
usedevelop = true