Skip to content

Commit

Permalink
getting project to work
Browse files Browse the repository at this point in the history
  • Loading branch information
TayDunlap committed Aug 23, 2023
1 parent efb66e8 commit 293cf27
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 40 deletions.
32 changes: 0 additions & 32 deletions models/demo_examples/materialization_incremental.sql

This file was deleted.

2 changes: 1 addition & 1 deletion models/demo_examples/python/forecast_daily_returns.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def model( dbt, session ):

dbt.config(
materialized="table",
packages=['pandas','Prophet'] # how to import python libraries in dbt's context
packages=['pandas','Prophet','holidays==0.18'] # how to import python libraries in dbt's context
)

# use historical data to fit model
Expand Down
7 changes: 0 additions & 7 deletions models/staging/tpch/stg_tpch_customers.sql
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
{{
config(
materialized='table'
,post_hook="Select * from foobar"
)
}}

with source as (

select * from {{ source('tpch', 'customer') }}
Expand Down

0 comments on commit 293cf27

Please sign in to comment.