Skip to content

Commit bac6ae7

Browse files
damian3031hashhar
authored andcommitted
Add tests against Python 3.13
1 parent 871dd38 commit bac6ae7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
"3.10",
4646
"3.11",
4747
"3.12",
48+
"3.13",
4849
"pypy-3.9",
4950
"pypy-3.10",
5051
]
@@ -56,11 +57,11 @@ jobs:
5657
]
5758
include:
5859
# Test with older Trino versions for backward compatibility
59-
- { python: "3.12", trino: "351", sqlalchemy: "~=1.4.0" } # first Trino version
60+
- { python: "3.13", trino: "351", sqlalchemy: "~=1.4.0" } # first Trino version
6061
# Test with sqlalchemy 1.3
61-
- { python: "3.12", trino: "latest", sqlalchemy: "~=1.3.0" }
62+
- { python: "3.13", trino: "latest", sqlalchemy: "~=1.3.0" }
6263
# Test with sqlalchemy 2.0
63-
- { python: "3.12", trino: "latest", sqlalchemy: "~=2.0.0" }
64+
- { python: "3.13", trino: "latest", sqlalchemy: "~=2.0.0" }
6465
env:
6566
TRINO_VERSION: "${{ matrix.trino }}"
6667
steps:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
"Programming Language :: Python :: 3.10",
7575
"Programming Language :: Python :: 3.11",
7676
"Programming Language :: Python :: 3.12",
77+
"Programming Language :: Python :: 3.13",
7778
"Programming Language :: Python :: Implementation :: CPython",
7879
"Programming Language :: Python :: Implementation :: PyPy",
7980
"Topic :: Database :: Front-Ends",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39,py310,py311
2+
envlist = py39,py310,py311,py312,py313
33

44
[testenv]
55
extras = tests

0 commit comments

Comments
 (0)