Skip to content

Commit 38ad704

Browse files
committed
Add support for Python 3.13
1 parent 2fba17e commit 38ad704

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
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"]
60+
- PYTHON_VERSION: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
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+
* Add support for Python 3.13
2+
13
Version 1.5.2 - 2024-09-30
24
* Use parameter for unary operator
35
* Support default values when inserting not matched merge

setup.py

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

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

99
[testenv]
1010
usedevelop = true

0 commit comments

Comments
 (0)