Skip to content

Commit

Permalink
Add tests against Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
damian3031 authored and hashhar committed Oct 16, 2024
1 parent 871dd38 commit bac6ae7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
"3.10",
"3.11",
"3.12",
"3.13",
"pypy-3.9",
"pypy-3.10",
]
Expand All @@ -56,11 +57,11 @@ jobs:
]
include:
# Test with older Trino versions for backward compatibility
- { python: "3.12", trino: "351", sqlalchemy: "~=1.4.0" } # first Trino version
- { python: "3.13", trino: "351", sqlalchemy: "~=1.4.0" } # first Trino version
# Test with sqlalchemy 1.3
- { python: "3.12", trino: "latest", sqlalchemy: "~=1.3.0" }
- { python: "3.13", trino: "latest", sqlalchemy: "~=1.3.0" }
# Test with sqlalchemy 2.0
- { python: "3.12", trino: "latest", sqlalchemy: "~=2.0.0" }
- { python: "3.13", trino: "latest", sqlalchemy: "~=2.0.0" }
env:
TRINO_VERSION: "${{ matrix.trino }}"
steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Database :: Front-Ends",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39,py310,py311
envlist = py39,py310,py311,py312,py313

[testenv]
extras = tests
Expand Down

0 comments on commit bac6ae7

Please sign in to comment.