From 1854e114fc3dbb3f87f84ed1b42f1bba9d99b933 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Wed, 3 Apr 2024 13:57:35 -0400 Subject: [PATCH] add `dbt-core~=1.8.0a1` as convenience dep --- hatch_build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hatch_build.py b/hatch_build.py index 02693cf0..a44d06c7 100644 --- a/hatch_build.py +++ b/hatch_build.py @@ -8,6 +8,8 @@ BASE_DEPS = [ # psycopg2 dependency installed in custom hatch_build.py "dbt-adapters>=0.1.0a1,<2.0", + # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency + "dbt-core>=1.8.0a1", # installed via dbt-adapters but used directly "dbt-common>=0.1.0a1,<2.0", "agate>=1.0,<2.0",