Skip to content

Commit a0ec4f0

Browse files
committed
Remove support for Python older than 3.6
1 parent 00698fa commit a0ec4f0

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-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.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
60+
- PYTHON_VERSION: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
6161

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

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Remove support for Python older than 3.6
2+
13
Version 1.7.0 - 2025-11-24
24
* Add support for Python 3.14
35
* Do not use parameters for COUNT(*)

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,13 @@ def get_version():
3333
},
3434
keywords='SQL database query',
3535
packages=find_packages(),
36-
python_requires='>=3.5',
36+
python_requires='>=3.6',
3737
classifiers=[
3838
'Development Status :: 5 - Production/Stable',
3939
'Intended Audience :: Developers',
4040
'License :: OSI Approved :: BSD License',
4141
'Operating System :: OS Independent',
4242
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.5',
4443
'Programming Language :: Python :: 3.6',
4544
'Programming Language :: Python :: 3.7',
4645
'Programming Language :: Python :: 3.8',

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 = py35, py36, py37, py38, py39, py310, py311, py312, py313, py314, pypy3
7+
envlist = py36, py37, py38, py39, py310, py311, py312, py313, py314, pypy3
88

99
[testenv]
1010
usedevelop = true

0 commit comments

Comments
 (0)