From 89cd4e8e67a0fe194808429e65984386dd0358c4 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Wed, 3 Apr 2024 13:44:29 -0400 Subject: [PATCH] add `dbt-core~=1.8.0a1` as convenience dep --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 234e7c97d..4673657b8 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,8 @@ def _plugin_version_trim() -> str: # dbt-redshift depends deeply on this package. it does not follow SemVer, therefore there have been breaking changes in previous patch releases # Pin to the patch or minor version, and bump in each new minor version of dbt-redshift. "redshift-connector<2.0.918,>=2.0.913,!=2.0.914", + # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency + "dbt-core>=1.8.0a1", # installed via dbt-core but referenced directly; don't pin to avoid version conflicts with dbt-core "sqlparse>=0.2.3,<0.5", "agate",