Skip to content

Commit fd2e815

Browse files
committed
Add support for Python 3.14
1 parent 21dc7a8 commit fd2e815

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

.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"]
60+
- PYTHON_VERSION: ["3.5", "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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* Add support for Python 3.14
12
* Do not use parameters for COUNT(*)
23

34
Version 1.6.0 - 2025-05-02

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def get_version():
4949
'Programming Language :: Python :: 3.11',
5050
'Programming Language :: Python :: 3.12',
5151
'Programming Language :: Python :: 3.13',
52+
'Programming Language :: Python :: 3.14',
5253
'Topic :: Database',
5354
'Topic :: Software Development :: Libraries :: Python Modules',
5455
],

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

99
[testenv]
1010
usedevelop = true

0 commit comments

Comments
 (0)