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.

fix pull step: update uv before installing python 3.14

the worker image ships an old uv that only knows about 3.14.0a6 (alpha),
which doesn't satisfy requires-python >= 3.14. updating uv first gets
the stable 3.14.0 release.

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

zzstoatzz 72f510c7 d674b79c

+1 -1
+1 -1
prefect.yaml
··· 3 3 pull: 4 4 - prefect.deployments.steps.run_shell_script: 5 5 script: | 6 - bash -c "rm -rf my-prefect-server && (git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server) && cd my-prefect-server && uv python install 3.14 && uv sync" 6 + bash -c "rm -rf my-prefect-server && (git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server) && cd my-prefect-server && uv self update && uv python install 3.14 && uv sync" 7 7 - prefect.deployments.steps.set_working_directory: 8 8 directory: my-prefect-server 9 9