Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DBT Version to Requirement.txt and Setup.py #174

Merged
merged 3 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sqlparse>=0.4.2
dbt-fabricspark
dbt-fabricspark==1.7.0rc1
nbformat
types-PyYAML
types-python-dateutil
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _get_dbt_core_version():


package_name = "dbt-fabricsparknb"
package_version = "1.7.0"
package_version = "1.7.7"
dbt_core_version = _get_dbt_core_version()
print(f"printing version --------- {dbt_core_version}")
description = """The Apache Spark adapter plugin for dbt"""
Expand All @@ -70,7 +70,7 @@ def _get_dbt_core_version():
include_package_data=True,
install_requires=[ ##ensure this aligns to requirements.txt in project
"sqlparse>=0.4.2",
"dbt-fabricspark",
"dbt-fabricspark==1.7.0rc1",
"nbformat",
"types-PyYAML",
"types-python-dateutil",
Expand Down
Loading