From 088f79e3fd91590e971334d2ce8a7a1a34e40446 Mon Sep 17 00:00:00 2001 From: Dmitry Maslennikov Date: Thu, 18 Jul 2024 18:37:45 +1000 Subject: [PATCH] dbt-core dependency --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 84287d8..5fcebdc 100644 --- a/setup.py +++ b/setup.py @@ -40,8 +40,11 @@ def _dbt_iris_version() -> str: ), include_package_data=True, install_requires=[ - "dbt-common>=1.0.4,<2.0", "dbt-adapters>=1.1.1,<2.0", + # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency + "dbt-core>=1.8.0", + "dbt-common>=1.0.4,<2.0", + ], classifiers=[ "Development Status :: 5 - Production/Stable",