ambitious-bird-15073
12/08/2022, 3:43 AMmetaflow.exception.MetaflowException: Downloading conda code packages from datastore backend s3 is unimplemented!
in version 2.7.16 and 2.7.17 but not in 2.7.15
This is the Flow(main() just prints out code):
from metaflow import step, FlowSpec, project
from utils.constants import STAGING_PROJECT_NAME
@project(name=STAGING_PROJECT_NAME)
class StagingSampleFlow(FlowSpec):
@step
def start(self):
"""
Start step of the Flow
"""
from src.main_start import main
main()
self.next(self.end)
@step
def end(self):
"""
End step of the Flow
"""
from src.main_end import main
main()
if __name__ == "__main__":
StagingSampleFlow()