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/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 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',