feat: add support for python 3.14 (#22)

* feat: add support for python 3.14

* chore: migrate to poetry 2

* fix: more tweaks for py314; use uv

---------

Co-authored-by: Ted Conbeer <tconbeer@users.noreply.github.com>
This commit is contained in:
Branch Vincent 2025-10-29 12:55:57 -07:00 committed by GitHub
commit 463e6f9330
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 1660 additions and 1624 deletions

View file

@ -1,5 +1,5 @@
import os
import sys
from importlib.metadata import entry_points
from typing import Generator
import pytest
@ -14,11 +14,6 @@ from harlequin_odbc.adapter import (
HarlequinOdbcCursor,
)
if sys.version_info < (3, 10):
from importlib_metadata import entry_points
else:
from importlib.metadata import entry_points
CONN_STR = os.environ["ODBC_CONN_STR"]