From c472c6ce57f9f0bdbf43b48b25351993d1eddcdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Jan 2023 17:04:04 +0000 Subject: [PATCH] build(deps): 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.4.0/CHANGELOG.md) - [Commits](https://github.com/dbt-labs/dbt-core/compare/v1.2.0...v1.4.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 d9f8d1375428a..ca66cffc3dca1 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.2.0"], + install_requires=["dbt-postgres>=1.2,<1.5"], extras_require={ "dev": ["dbt-tests-adapter~=1.2.0"], },