Replies: 1 comment 8 replies
-
hi @wigging - we have some friction to resolve here, but to answer your question
so there's a sequencing friction to smooth out, because you should be able to clone your so the immediate workaround for a process worker is to override the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have some Python code as follows:
This code pulls down the GitHub repo to a worker that is in a process pool and runs the flow code that is located in the entrypoint Python script. The GitHub repo is setup as a uv project and contains a pyproject.toml file.
How is the flow code being executed on the worker? Is it using uv to call the Python script like
uv run 02_deploy_local.py
or is it using the Python command likepython 02_deploy_local.py
?If the worker is using the Python command to run the script, then how do I tell it to use the
uv run
command? The worker has uv installed on it so I would like it to use uv to run the Python script.Beta Was this translation helpful? Give feedback.
All reactions