From e3c78e48c8ba357eef7841d36d65d6df05e8402b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Oct 2022 11:46:12 +0000 Subject: [PATCH] Update dbt-postgres requirement in /misc/dbt-materialize Updates the requirements on [dbt-postgres](https://github.com/dbt-labs/dbt-core) to permit the latest version. - [Release notes](https://github.com/dbt-labs/dbt-core/releases) - [Changelog](https://github.com/dbt-labs/dbt-core/blob/v1.3.0/CHANGELOG.md) - [Commits](https://github.com/dbt-labs/dbt-core/compare/v1.1.0...v1.3.0) --- updated-dependencies: - dependency-name: dbt-postgres dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- misc/dbt-materialize/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/dbt-materialize/setup.py b/misc/dbt-materialize/setup.py index d8e4e4e..c0564bf 100644 --- a/misc/dbt-materialize/setup.py +++ b/misc/dbt-materialize/setup.py @@ -39,7 +39,7 @@ "include/materialize/macros/**/*.sql", ] }, - install_requires=["dbt-postgres~=1.1.0"], + install_requires=["dbt-postgres>=1.1,<1.4"], extras_require={ "dev": ["pytest-dbt-adapter==0.6.0"], },