Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Fix --dbt for dbt-core >= 1.4.2 #440

Merged
merged 2 commits into from
Mar 11, 2023
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 data_diff/dbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def import_dbt():
PROJECT_FILE = "dbt_project.yml"
PROFILES_FILE = "profiles.yml"
LOWER_DBT_V = "1.0.0"
UPPER_DBT_V = "1.4.2"
UPPER_DBT_V = "1.4.5"


# https://github.com/dbt-labs/dbt-core/blob/c952d44ec5c2506995fbad75320acbae49125d3d/core/dbt/cli/resolvers.py#L6
Expand Down
26 changes: 14 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ trino = {version="^0.314.0", optional=true}
presto-python-client = {version="*", optional=true}
clickhouse-driver = {version="*", optional=true}
duckdb = {version="^0.7.0", optional=true}
dbt-artifacts-parser = {version="^0.2.4", optional=true}
dbt-artifacts-parser = {version="^0.2.5", optional=true}
dbt-core = {version="^1.0.0", optional=true}

[tool.poetry.dev-dependencies]
Expand All @@ -54,7 +54,7 @@ presto-python-client = "*"
clickhouse-driver = "*"
vertica-python = "*"
duckdb = "^0.7.0"
dbt-artifacts-parser = "^0.2.4"
dbt-artifacts-parser = "^0.2.5"
dbt-core = "^1.0.0"
# google-cloud-bigquery = "*"
# databricks-sql-connector = "*"
Expand Down