From d0076a8fc1463d8487c44b208ea7abdaa1841dfb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Oct 2022 17:18:43 +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.3.0/CHANGELOG.md) - [Commits](https://github.com/dbt-labs/dbt-core/compare/v1.2.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 d9f8d1375428a..1ecea04ecf549 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.4"], extras_require={ "dev": ["dbt-tests-adapter~=1.2.0"], },