acoustic-carpenter-78188
06/19/2023, 9:06 PMfrom flytekit import task, workflow, ImageSpec
new_flytekit = "git+<https://github.com/flyteorg/flytekit@01f2d63221467face8d35ed0af5308bbb3e66eaa>"
image = ImageSpec(registry="pingsutw", packages=["pandas", new_flytekit], apt_packages=["git"], requirements="requirement.txt")
@task(container_image=image)
def bar():
print("hello")
print("hello")
@workflow
def wf() -> str:
bar()
return "hi"
if __name__ == '__main__':
wf()
Tracking Issue
NA
Follow-up issue
NA
flyteorg/flytekit
✅ All checks have passed
30/30 successful checksacoustic-carpenter-78188
06/26/2023, 9:26 PMacoustic-carpenter-78188
07/05/2023, 11:38 AM