Skip to content

Commit

Permalink
Upgrade protobuf (#851)
Browse files Browse the repository at this point in the history
Co-authored-by: Mike Alfare <[email protected]>
  • Loading branch information
benc-db and mikealfare authored Nov 20, 2024
1 parent 4e3e3f8 commit a08e3f2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
- Fix behavior flag use in init of DatabricksAdapter (thanks @VersusFacit!) ([836](https://github.com/databricks/dbt-databricks/pull/836))
- Restrict pydantic to V1 per dbt Labs' request ([843](https://github.com/databricks/dbt-databricks/pull/843))
- Switching to Ruff for formatting and linting ([847](https://github.com/databricks/dbt-databricks/pull/847))
- Pin protobuf to 5.x to stop incompatibility breaks ([850](https://github.com/databricks/dbt-databricks/pull/850))

## dbt-databricks 1.8.7 (October 10, 2024)

Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ tox>=3.2.0
types-requests
types-mock

dbt-tests-adapter>=1.10.2, <2.0
git+https://github.com/dbt-labs/dbt-adapters.git@main#subdirectory=dbt-tests-adapter
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
databricks-sql-connector>=3.5.0, <4.0
dbt-spark>=1.8.0, <2.0
dbt-core>=1.8.7, <2.0
dbt-common>=1.10.0, <2.0
dbt-adapters>=1.7.0, <2.0
git+https://github.com/dbt-labs/dbt-adapters.git@main
git+https://github.com/dbt-labs/dbt-common.git@main
git+https://github.com/dbt-labs/dbt-core.git@main#subdirectory=core
git+https://github.com/dbt-labs/dbt-spark.git@main
databricks-sdk==0.17.0
keyring>=23.13.0
protobuf<5.0.0
protobuf>=5.0.0,<6.0.0
pydantic>=1.10.0, <2
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ def _get_plugin_version() -> str:
packages=find_namespace_packages(include=["dbt", "dbt.*"]),
include_package_data=True,
install_requires=[
"dbt-spark>=1.8.0, <2.0",
"dbt-core>=1.8.7, <2.0",
"dbt-adapters>=1.7.0, <2.0",
"dbt-common>=1.10.0, <2.0",
"dbt-adapters @ git+https://github.com/dbt-labs/dbt-adapters.git@main",
"dbt-core @ git+https://github.com/dbt-labs/dbt-core.git@main#subdirectory=core",
"dbt-common @ git+https://github.com/dbt-labs/dbt-common.git@main",
"dbt-spark @ git+https://github.com/dbt-labs/dbt-spark.git@main",
"databricks-sql-connector>=3.5.0, <4.0.0",
"databricks-sdk==0.17.0",
"keyring>=23.13.0",
"pandas<2.2.0",
"protobuf<5.0.0",
"protobuf>=5.0.0,<6.0.0",
"pydantic>=1.10.0, <2",
],
zip_safe=False,
Expand Down

0 comments on commit a08e3f2

Please sign in to comment.