Eduardo Blancas

Results 297 comments of Eduardo Blancas

please post whatever links you found so we can document it and whoever works on this can find the resources easily, I'll assign something else

Yes! The default placeholders are the way to go to have an unambiguous definition of paths. This path problem is because Jupyter always sets the current working directory relative to...

How to reproduce this: ```python # run.py from ploomber.spec import DAGSpec from ploomber import with_env @with_env('env.yaml') def make(env): return DAGSpec('pipeline.yaml', env=env).to_dag() # error when calling the function make() ``` ```...

yes. this is repeated in several places in the soopervisor config. I'm thinking to concentrate a simple explanation in soopervisor, and have another more detailed section in ploomber docs

[added guide to soopervisor docs,](https://soopervisor.readthedocs.io/en/latest/user-guide/task-comm.html) we need something like this but with more details in ploomber docs

if you need help, feel free to ping us here or in Slack! https://ploomber.io/community/

Interesting, I didn't anticipate this. Context: Since we use jinja to expand parameters (i.e. `{{some_param}}`), we'll see them as strings once rendered (even if `some_param` is an int/float/list) so we...

Thanks! Some guidance: We want to modify the `cast_if_possible` function, I think we need to add another argument `raw_value`, then inside the function's body, we want to cast only if...

feel free to ping us if you have any questions