File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ RUN mkdir -p /tmp/dbt-sqlite-tests
11
11
12
12
RUN cd /tmp/dbt-sqlite-tests && wget https://github.com/nalgeon/sqlean/releases/download/0.12.2/crypto.so
13
13
14
- RUN pip install dbt==0.21.1
14
+ RUN pip install dbt-core~=1.0.0
15
15
16
16
# NOTE: dbt 0.19.x doesn't work with pytest-dbt-adapter >= 0.5.0; use 0.4.0
17
17
# see https://github.com/dbt-labs/dbt-adapter-tests/issues/20
18
18
#
19
19
# pytest-dbt-adapter 0.6.0 doesn't seem to work with dbt 0.21.1,
20
20
# I think it's intended for the forthcoming 1.0.0 dbt release?
21
- RUN pip install pytest-dbt-adapter==0.5.1
21
+ RUN pip install pytest-dbt-adapter==0.6.0
22
22
23
23
# dbt-sqlite overrides some stuff pertaining to 'docs generate'
24
24
# so exercise it using jaffle_shop repo
Original file line number Diff line number Diff line change @@ -30,8 +30,11 @@ and joins.
30
30
31
31
## How to Use This
32
32
33
- Use the right version:
33
+ Use the right version. Starting with the release of dbt-core 1.0.0,
34
+ versions of dbt-sqlite are aligned to the same major+minor
35
+ [ version] ( https://semver.org/ ) of dbt-core.
34
36
37
+ - versions 1.0.x of this adapter work with dbt-core 1.0.x
35
38
- versions 0.2.x of this adapter work with dbt 0.20.x and 0.21.x
36
39
- versions 0.1.x of this adapter work with dbt 0.19.x
37
40
- versions 0.0.x of this adapter work with dbt 0.18.x
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def _get_plugin_version():
63
63
]
64
64
},
65
65
install_requires = [
66
- "dbt-core>=0.20 .0"
66
+ "dbt-core>=1.0 .0"
67
67
],
68
68
classifiers = [
69
69
'Development Status :: 4 - Beta' ,
You can’t perform that action at this time.
0 commit comments