From c875b90a4981a82ad5e466eefc0cf54fbb4e265c Mon Sep 17 00:00:00 2001 From: codeforkjeff Date: Thu, 26 Jun 2025 21:36:18 -0700 Subject: [PATCH 1/2] basic compatibility with dbt-core>=1.10.0 --- Dockerfile | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7ce9a8..7cef68f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY dbt ./dbt RUN pip install . -RUN python3 -m pip install pytest pytest-dotenv dbt-tests-adapter~=1.10.4 +RUN python3 -m pip install pytest pytest-dotenv dbt-tests-adapter~=1.16.0 COPY run_tests.sh . COPY pytest.ini . diff --git a/setup.py b/setup.py index 487a945..4320361 100644 --- a/setup.py +++ b/setup.py @@ -46,9 +46,9 @@ def _get_plugin_version(): ] }, install_requires=[ - "dbt-core>=1.9.0", + "dbt-core>=1.10.0", "dbt-core<2", - "dbt-adapters~=1.13.1" + "dbt-adapters~=1.16.0" ], classifiers=[ 'Development Status :: 4 - Beta', From ed33b40e42d77bcd70b4a7e31dc2836208472d28 Mon Sep 17 00:00:00 2001 From: codeforkjeff Date: Thu, 26 Jun 2025 21:38:59 -0700 Subject: [PATCH 2/2] add version note to README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e1895ea..989205d 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Use the right version. Starting with the release of dbt-core 1.0.0, versions of dbt-sqlite are aligned to the same major+minor [version](https://semver.org/) of dbt-core. +- versions 1.10.x of this adapter work with dbt-core 1.10.x - versions 1.9.x of this adapter work with dbt-core 1.9.x - versions 1.6.x - 1.8.x are not supported: this adapter fell behind, and it's too much work to go back to support these versions