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

Commit 46f3371

Browse files
committed
remove upper bound from exception
1 parent a1282b7 commit 46f3371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_diff/dbt_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get_models(self):
7878

7979
if dbt_version < parse_version(LOWER_DBT_V):
8080
raise Exception(
81-
f"Found dbt: v{dbt_version} Expected the dbt project's version to be >= {LOWER_DBT_V} and < {UPPER_DBT_V}"
81+
f"Found dbt: v{dbt_version} Expected the dbt project's version to be >= {LOWER_DBT_V}"
8282
)
8383
elif dbt_version >= parse_version(UPPER_DBT_V):
8484
logger.warning(f"{dbt_version} is a recent version of dbt and may not be fully tested with data-diff! \nPlease report any issues to https://github.com/datafold/data-diff/issues")

0 commit comments

Comments
 (0)