Hi, I've a project structure like this - ```primar...
# ask-metaflow
s
Hi, I've a project structure like this -
Copy code
primary-module
..primary_module
....model.py
..secondary-module
....secondary_module
......util.py
....pyproject.toml
..metaflow_run.py
..setup.py
And I'm running
metaflow_run.py
- this depends on the
secondary_module
which is a separate python project cloned locally here (path is being resolved as
sys.path.insert(0, secondary-module)
This flow has been running for a few months However, currently, it seems to be taking a very old code of
secondary_module
(old version of
util.py
) The code was,
secondary_module
used to be a project with
setup.py
, which got changed into
poetry
with
pyproject.toml
But I'm not sure how that should affect, since the whole source is anyway cloned here Is there a way to debug why this is happening?
1