From 8de950723e95d9b8d88589402c9def0edcd2fe29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Jul 2024 18:48:27 +0200 Subject: [PATCH] Update testcontainers requirement from ==3.7.* to >=3.7,<4.8 (#2) Updates the requirements on [testcontainers](https://github.com/testcontainers/testcontainers-python) to permit the latest version. - [Release notes](https://github.com/testcontainers/testcontainers-python/releases) - [Changelog](https://github.com/testcontainers/testcontainers-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-python/compare/v3.7.0...testcontainers-v4.7.1) --- updated-dependencies: - dependency-name: testcontainers dependency-type: direct:development ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c351a03..e236d60 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ install_requires=["dbt-duckdb>=1.6"], extras_require={ "airflow": ["apache-airflow"], - "test": ["testcontainers==3.7.*"], + "test": ["testcontainers>=3.7,<4.8"], }, python_requires='>=3.8' )