Skip to content

Commit 946b402

Browse files
authored
Merge pull request #63 from codeforkjeff/dbt-1-10-0-compat
dbt 1.10.0 compatibility
2 parents 5b8c4e1 + ed33b40 commit 946b402

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ COPY dbt ./dbt
2020

2121
RUN pip install .
2222

23-
RUN python3 -m pip install pytest pytest-dotenv dbt-tests-adapter~=1.10.4
23+
RUN python3 -m pip install pytest pytest-dotenv dbt-tests-adapter~=1.16.0
2424

2525
COPY run_tests.sh .
2626
COPY pytest.ini .

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Use the right version. Starting with the release of dbt-core 1.0.0,
3434
versions of dbt-sqlite are aligned to the same major+minor
3535
[version](https://semver.org/) of dbt-core.
3636

37+
- versions 1.10.x of this adapter work with dbt-core 1.10.x
3738
- versions 1.9.x of this adapter work with dbt-core 1.9.x
3839
- versions 1.6.x - 1.8.x are not supported: this adapter fell behind, and
3940
it's too much work to go back to support these versions

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ def _get_plugin_version():
4646
]
4747
},
4848
install_requires=[
49-
"dbt-core>=1.9.0",
49+
"dbt-core>=1.10.0",
5050
"dbt-core<2",
51-
"dbt-adapters~=1.13.1"
51+
"dbt-adapters~=1.16.0"
5252
],
5353
classifiers=[
5454
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)