Skip to content

Commit 7409388

Browse files
authored
package-lock: remove name to avoid breaking old dbt versions (#2028)
* package-lock: remove name to avoid breaking old dbt versions * remove databricks limitation * bugfix
1 parent 525e8df commit 7409388

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/test-warehouse.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ jobs:
121121
run: >
122122
pip install
123123
"dbt-core${{ inputs.dbt-version && format('=={0}', inputs.dbt-version) }}"
124-
# TODO: remove the <1.10.2 once we have a fix for https://github.com/elementary-data/elementary/issues/1931
125-
"dbt-${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks<1.10.2,') || inputs.warehouse-type }}${{ inputs.dbt-version && format('~={0}', inputs.dbt-version) }}"
124+
"dbt-${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks') || inputs.warehouse-type }}${{ inputs.dbt-version && format('~={0}', inputs.dbt-version) }}"
126125
127126
- name: Install Elementary
128127
run: |
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
packages:
2-
- name: dbt_utils
3-
package: dbt-labs/dbt_utils
2+
- package: dbt-labs/dbt_utils
43
version: 0.8.6
5-
- name: elementary
6-
package: elementary-data/elementary
4+
- package: elementary-data/elementary
75
version: 0.20.0
86
sha1_hash: b947fddc15b523536708ec80fbf40600fff44200

0 commit comments

Comments
 (0)