Skip to content

Commit

Permalink
feat: add pyproject requirements on dpl action
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfg committed Apr 6, 2024
1 parent ab58b47 commit 8d7a617
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
4 changes: 2 additions & 2 deletions flows/trigger-dbt/trigger_dbt_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
def trigger_dbt_flow() -> str:
result = DbtCoreOperation(
commands=["dbt run"],
project_dir="/opt/prefect/prefect-cloud-run-poc/queries",
profiles_dir="/opt/prefect/prefect-cloud-run-poc/queries"
project_dir="/Users/apple/prefect-cloud-run-poc/queries",
profiles_dir="/Users/apple/prefect-cloud-run-poc/queries"
).run()
return result

Expand Down
32 changes: 30 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ gcsfs = "^2024.3.1"
prefect = "^2.16.8"
prefect-gcp = "^0.5.7"
dbt-bigquery = "^1.7.7"
prefect-dbt = "^0.4.1"
prefect-dbt = {extras = ["bigquery"], version = "^0.4.1"}

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 8d7a617

Please sign in to comment.