Skip to content

Commit

Permalink
don't take the newest version of databricks-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Dec 20, 2023
1 parent aee7a84 commit 90c7f94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
databricks-sql-connector>=2.9.3, <3.0.0
dbt-spark~=1.7.1
databricks-sdk>=0.9.0
databricks-sdk>=0.9.0, <0.16.0
keyring>=23.13.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


# get this package's version from dbt/adapters/<name>/__version__.py
def _get_plugin_version():
def _get_plugin_version() -> str:
_version_path = os.path.join(this_directory, "dbt", "adapters", "databricks", "__version__.py")
try:
exec(open(_version_path).read())
Expand Down Expand Up @@ -56,7 +56,7 @@ def _get_plugin_version():
install_requires=[
"dbt-spark~=1.7.1",
"databricks-sql-connector>=2.9.3, <3.0.0",
"databricks-sdk>=0.9.0",
"databricks-sdk>=0.9.0, <0.16.0",
"keyring>=23.13.0",
],
zip_safe=False,
Expand Down

0 comments on commit 90c7f94

Please sign in to comment.