Skip to content

Commit ac78d49

Browse files
authored
Merge pull request #309 from fishtown-analytics/bump/0.19.0
Allow dbt v0.19.0
2 parents ebda584 + 5b278d8 commit ac78d49

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
echo $BIGQUERY_SERVICE_ACCOUNT_JSON > ${HOME}/bigquery-service-key.json
1717
1818
- restore_cache:
19-
key: deps1-{{ .Branch }}
19+
key: deps2-{{ .Branch }}
2020

2121
- run:
2222
name: "Run Tests - Postgres"

dbt_project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'dbt_utils'
22
version: '0.1.0'
33

4-
require-dbt-version: [">=0.18.0", "<0.19.0"]
4+
require-dbt-version: [">=0.18.0", "<0.20.0"]
55
config-version: 2
66

77
target-path: "target"

run_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [[ ! -f $VENV ]]; then
66
. $VENV
77

88
pip install --upgrade pip setuptools
9-
pip install "dbt>=0.18.0,<0.19.0"
9+
pip install --pre "dbt<0.20.0"
1010
fi
1111

1212
. $VENV

0 commit comments

Comments
 (0)