Skip to content

Commit 127f0c7

Browse files
authored
Merge pull request #64 from tuva-health/v0.16.0
make work w/ 0.16.0
2 parents 52ed1bb + cbf0816 commit 127f0c7

6 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/workflows/tuva_dbt_v1.9.4.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install dbt-core and BigQuery adapter
5656
run: |
5757
python -m pip install --upgrade pip
58-
pip install dbt-core==1.9.4 dbt-bigquery
58+
pip install dbt-core==1.10.13 dbt-bigquery
5959
6060
- name: Create dbt profiles.yml for BigQuery
6161
run: |
@@ -115,7 +115,7 @@ jobs:
115115
- name: Install dbt-core and Fabric adapter
116116
run: |
117117
python -m pip install --upgrade pip
118-
pip install dbt-core==1.9.4 dbt-fabric
118+
pip install dbt-core==1.10.13 dbt-fabric
119119
120120
- name: dbt-deps
121121
run: dbt deps --profiles-dir ./integration_tests/profiles/fabric
@@ -147,7 +147,7 @@ jobs:
147147
- name: Install dbt-core and Redshift adapter
148148
run: |
149149
python -m pip install --upgrade pip
150-
pip install dbt-core==1.9.4 dbt-redshift
150+
pip install dbt-core==1.10.13 dbt-redshift
151151
152152
- name: dbt-deps
153153
run: dbt deps --profiles-dir ./integration_tests/profiles/redshift
@@ -184,7 +184,7 @@ jobs:
184184
- name: Install dbt-core and Snowflake adapter
185185
run: |
186186
python -m pip install --upgrade pip
187-
pip install dbt-core==1.9.4 dbt-snowflake
187+
pip install dbt-core==1.10.13 dbt-snowflake
188188
189189
- name: dbt-deps
190190
run: dbt deps --profiles-dir ./integration_tests/profiles/snowflake

.github/workflows/weekly_dbt_v1.9.4_snowflake_dev_build_full_refresh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install dbt-core and Snowflake adapter
3434
run: |
3535
python -m pip install --upgrade pip
36-
pip install dbt-core==1.9.4 dbt-snowflake
36+
pip install dbt-core==1.10.0 dbt-snowflake==1.10.0
3737
3838
- name: dbt-deps
3939
run: dbt deps --profiles-dir ./integration_tests/profiles/snowflake

dbt_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ seeds:
3434
appointment:
3535
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','appointment.csv',headers=true) }}"
3636
eligibility:
37-
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','eligibility.csv',headers=true) }}"
37+
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.16.0','eligibility.csv',headers=true) }}"
3838
immunization:
3939
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','immunization.csv',headers=true) }}"
4040
lab_result:

packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
packages:
22
- package: tuva-health/the_tuva_project
3-
version: [">=0.15.0","<0.16.0"]
3+
version: [">=0.15.0","<0.17.0"]
44
- package: dbt-labs/dbt_utils
55
version: [ ">=0.9.2" ]

seeds/_seeds.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ seeds:
149149
{%- if target.type in ("postgres", "databricks") -%} timestamp
150150
{%- elif target.type == "fabric" -%} datetime2(6)
151151
{%- else -%} datetime {%- endif -%}
152+
hospice_flag: integer
153+
institutional_snp_flag: integer
154+
long_term_institutional_flag: integer
155+
enrollment_status: |
156+
{%- if target.type in ("bigquery", "databricks") -%} string {%- else -%} varchar(255) {%- endif -%}
152157
153158
- name: immunization
154159
config:

seeds/eligibility.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
person_id,member_id,subscriber_id,gender,race,birth_date,death_date,death_flag,enrollment_start_date,enrollment_end_date,payer,payer_type,plan,original_reason_entitlement_code,dual_status_code,medicare_status_code,group_id,group_name,name_suffix,first_name,middle_name,last_name,social_security_number,subscriber_relation,address,city,state,zip_code,phone,email,ethnicity,data_source,file_name,file_date,ingest_datetime
1+
person_id,member_id,subscriber_id,gender,race,birth_date,death_date,death_flag,enrollment_start_date,enrollment_end_date,payer,payer_type,plan,original_reason_entitlement_code,dual_status_code,medicare_status_code,group_id,group_name,name_suffix,first_name,middle_name,last_name,social_security_number,subscriber_relation,address,city,state,zip_code,phone,email,ethnicity,data_source,file_name,file_date,ingest_datetime,hospice_flag,institutional_snp_flag,long_term_institutional_flag,enrollment_status

0 commit comments

Comments
 (0)