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 |
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.pyor 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 runcommand? The worker has uv installed on it so I would like it to use uv to run the Python script.All reactions