my prefect server setup prefect-metrics.waow.tech
python orchestration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

enrich: use python 3.13 (dbt doesn't support 3.14 yet)

dbt-core pins mashumaro<3.15 and uses pydantic v1 shim, both broken
on 3.14. override enrich's command to --python 3.13 while other flows
stay on 3.14. nice demo of per-deployment flexibility via job_variables.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz 5fdd3e38 035366bf

+7 -1
+7 -1
prefect.yaml
··· 40 40 41 41 - name: enrich 42 42 entrypoint: flows/enrich.py:enrich 43 - work_pool: *k8s 43 + work_pool: 44 + name: kubernetes-pool 45 + job_variables: 46 + command: >- 47 + uv run --python 3.13 48 + --with 'my-prefect-server @ git+https://github.com/zzstoatzz/my-prefect-server.git' 49 + prefect flow-run execute 44 50 concurrency_limit: 1 45 51 schedules: 46 52 - cron: "5 * * * *" # 5 minutes after gh-notifications