From be04ab9c7265fb903b9ed9e5efb2da18847b0f7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Oct 2022 17:18:35 +0000 Subject: [PATCH] build(deps-dev): update dbt-tests-adapter requirement Updates the requirements on [dbt-tests-adapter](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-tests-adapter dependency-type: direct:development ... 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..5a7c69916d0e5 100644 --- a/misc/dbt-materialize/setup.py +++ b/misc/dbt-materialize/setup.py @@ -41,6 +41,6 @@ }, install_requires=["dbt-postgres~=1.2.0"], extras_require={ - "dev": ["dbt-tests-adapter~=1.2.0"], + "dev": ["dbt-tests-adapter>=1.2,<1.4"], }, )