Skip to content

Commit 5b28c33

Browse files
authored
upgrade dbt to 1.3 (#98)
1 parent 61972ea commit 5b28c33

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/generate-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333

3434
- name: Install dependencies and run
3535
run: |
36-
pip install dbt-core==1.0.2
37-
pip install dbt-postgres==1.0.2
36+
pip install dbt-core==1.3
37+
pip install dbt-postgres==1.3
3838
dbt deps
3939
dbt run
4040

.github/workflows/run-db-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
working-directory: ./integration_tests
5050
run: |
5151
pip install -r requirements.txt
52-
pip install dbt-${{ matrix.database }}==1.1.0
52+
pip install dbt-${{ matrix.database }}==1.3.0
5353
dbt deps
5454
5555
- name: Drop schemas
@@ -139,6 +139,6 @@ jobs:
139139
working-directory: ./integration_tests
140140
run: |
141141
pip install -r requirements.txt
142-
pip install dbt-${{ matrix.database }}==1.1.0
142+
pip install dbt-${{ matrix.database }}==1.3.0
143143
dbt deps
144144
dbt run-operation drop_all_schemas --args "{ schema_name: ${{ env.DQ_SCHEMA }} }" --profile re_data_${{ matrix.database }} --vars "{ source_schema: ${{ env.DQ_SCHEMA }} }"

dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "re_data"
22
version: "0.10.4"
33
config-version: 2
44

5-
require-dbt-version: [">=1.0.0", "<1.3.0"]
5+
require-dbt-version: [">=1.0.0", "<1.4.0"]
66

77
profile: "re_data_postgres"
88

integration_tests/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pytest==6.2.5
22
pyyaml==6.0
3-
dbt-core==1.1.0
4-
dbt-postgres==1.1.0
3+
dbt-core==1.3.0
4+
dbt-postgres==1.3.0

0 commit comments

Comments
 (0)