Julien
08/04/2025, 4:08 PMprefect.yml file, but I'm a bit lost on how to load dependencies when :
• I'm in a subdirectory (/project_A/)
• Using uv and a pyproject.toml to define all dependencies (located in /project_A/pyproject.toml)
• Use workspace in uv (with a root pyproject.toml )
• And have private dependencies in the same repository, located in /deps/dep_A )
• I'm using a Process running in a docker container (using official prefect image)
If anyone as a sample file or example to share...Nate
08/04/2025, 4:19 PMcommand the worker uses to submit the subprocess
uv run --with git+<https://path/to/your/dir/with/pyproject> -m prefect.engine which is obviously not ideal
it should be possible to
• clone your repo
• install deps from lockfile
• then execute command with your newly installed venv
but its not possible to do that today without writing your own worker typeNate
08/04/2025, 4:20 PMJulien
08/04/2025, 5:38 PM