diff --git a/.changes/unreleased/Dependencies-20240226-123502.yaml b/.changes/unreleased/Dependencies-20240226-123502.yaml new file mode 100644 index 00000000000..1e40e12b002 --- /dev/null +++ b/.changes/unreleased/Dependencies-20240226-123502.yaml @@ -0,0 +1,6 @@ +kind: Dependencies +body: Cap dbt-semantic-interfaces version range to <0.6 +time: 2024-02-26T12:35:02.643779-08:00 +custom: + Author: tlento + PR: "9671" diff --git a/core/setup.py b/core/setup.py index 3bd43cd31df..8fc6c125783 100644 --- a/core/setup.py +++ b/core/setup.py @@ -68,10 +68,12 @@ "pathspec>=0.9,<0.12", "sqlparse>=0.2.3,<0.5", # ---- - # These are major-version-0 packages also maintained by dbt-labs. Accept patches. + # These are major-version-0 packages also maintained by dbt-labs. + # Accept patches but avoid automatically updating past a set minor version range. "dbt-extractor>=0.5.0,<=0.6", "minimal-snowplow-tracker>=0.0.2,<0.1", - "dbt-semantic-interfaces<1.0.0a1", + "dbt-semantic-interfaces>=0.5.0a2,<0.6", + # Minor versions for these are expected to be backwards-compatible "dbt-common<1.0", "dbt-adapters>=0.1.0a2,<1.0", # ----