Skip to content

Commit 4739cbe

Browse files
damian3031mdesmet
authored andcommitted
Unpin trino python client minor version
1 parent 43f213c commit 4739cbe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dbt/adapters/trino/connections.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def __init__(self, handle, prepared_statements_enabled):
252252
self._prepared_statements_enabled = prepared_statements_enabled
253253

254254
def cursor(self):
255-
self._cursor = self.handle.cursor(experimental_python_types=True)
255+
self._cursor = self.handle.cursor()
256256
return self
257257

258258
def cancel(self):

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
dbt-core~=1.1.1
2-
trino==0.313.0
2+
trino~=0.322

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ def _get_dbt_core_version():
6868
},
6969
install_requires=[
7070
"dbt-core~={}".format(dbt_version),
71-
"trino~=0.313.0",
71+
"trino~=0.322",
7272
],
7373
)

0 commit comments

Comments
 (0)