Skip to content

dbt 1.10.0 compatibility #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down