Skip to content

Commit

Permalink
Unpin trino python client minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
damian3031 authored and mdesmet committed Mar 10, 2023
1 parent 43f213c commit 4739cbe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dbt/adapters/trino/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def __init__(self, handle, prepared_statements_enabled):
self._prepared_statements_enabled = prepared_statements_enabled

def cursor(self):
self._cursor = self.handle.cursor(experimental_python_types=True)
self._cursor = self.handle.cursor()
return self

def cancel(self):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dbt-core~=1.1.1
trino==0.313.0
trino~=0.322
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ def _get_dbt_core_version():
},
install_requires=[
"dbt-core~={}".format(dbt_version),
"trino~=0.313.0",
"trino~=0.322",
],
)

0 comments on commit 4739cbe

Please sign in to comment.