freezing-tailor-85994
08/11/2025, 4:01 PMpipelines
- src
- - tasks
- - - mytasks.py
- - workflows
- - - myworkflow.py
- - utils
- - - pipeline_utils.py
- shared
- - src
- - - some_utils.py
mytasks.py
has the import from shared.src.some_utils import util
which runs fine on local but when I package up using pyflyte register pipelines/src/workflows/
from the root of the monorepo, the packed tarball only includes pipeline/src/tasks
, pipeline/src/utils/
and pipeline/src/workflows
but not shared
despite references so I get immediate crashes. Has anyone else seen/solved this problem?early-napkin-90297
08/13/2025, 12:30 PMpyflyte package
you'd provide a container image with all the dependencies, including shared/src/come_utils.py