Hi everyone! I'm using prefect 3. I am defining de...
# ask-community
j
Hi everyone! I'm using prefect 3. I am defining deployments in code using
flow.from_source(source=,entrypoint=).to_deployment()
where source is an instance of
GitRepository
. Before executing the flow, I need to run
pipenv install
. In Prefect 2, it looked like there was a way to specify a custom pull_steps array, where pipenv could be set to execute. However I don't see that in the current code. Is there a way to do what I need when defining the deployment in code, and not in a prefect.yaml?