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:
parent
5786b38d09
commit
463e6f9330
10 changed files with 1660 additions and 1624 deletions
|
|
@ -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"]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue