Skip to content

Commit 9a590df

Browse files
committed
Remove support for Python older than 3.9
1 parent 1be9d68 commit 9a590df

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ test-tox-python:
5757
- tox -e "py${PYTHON_VERSION/./}" -- -v --output-file junit.xml
5858
parallel:
5959
matrix:
60-
- PYTHON_VERSION: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
60+
- PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
6161

6262
test-tox-pypy:
6363
extends: .test-tox

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Use the ordinal number as aliases for GROUP BY
55
* Check the coherence of the aliases of GROUP BY and ORDER BY expressions
66
* Do not use parameter for EXTRACT field
7-
* Remove support for Python older than 3.6
7+
* Remove support for Python older than 3.9
88

99
Version 1.7.0 - 2025-11-24
1010
* Add support for Python 3.14

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = 'hatchling.build'
55
[project]
66
name = 'python-sql'
77
dynamic = ['version', 'authors']
8-
requires-python = '>=3.6'
8+
requires-python = '>=3.9'
99
maintainers = [
1010
{name = "Tryton", email = "foundation@tryton.org"},
1111
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py36, py37, py38, py39, py310, py311, py312, py313, py314, pypy3
7+
envlist = py39, py310, py311, py312, py313, py314, pypy3
88

99
[testenv]
1010
usedevelop = true

0 commit comments

Comments
 (0)