From 3ac7f759012423506881ea80e14874c3b841884b Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Wed, 15 May 2024 12:38:48 +0200 Subject: [PATCH] Bump deps on common, adapters, core (#1039) Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com> --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 2d631d679..728dcc8c6 100644 --- a/setup.py +++ b/setup.py @@ -59,11 +59,11 @@ def _get_plugin_version_dict(): packages=find_namespace_packages(include=["dbt", "dbt.*"]), include_package_data=True, install_requires=[ - "dbt-common>=0.1.0a1,<2.0", - "dbt-adapters>=1.1.0rc1,<2.0", + "dbt-common>=1.0.4,<2.0", + "dbt-adapters>=1.1.1,<2.0", "snowflake-connector-python[secure-local-storage]~=3.0", # add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency - "dbt-core>=1.8.0a1", + "dbt-core>=1.8.0", # installed via dbt-core but referenced directly; don't pin to avoid version conflicts with dbt-core "agate", ],