Joachim Jablon

Results 396 comments of Joachim Jablon

See https://github.com/botify-labs/simpleflow/blob/main/pyproject.toml#L86C2-L88 and https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html . We're missing `tool.setuptools.packages.find` and the find directive

Not a huge fan of hatch compared to poetry (both are equivalent tools) but it's true that hatch, being born later, uses the standard PEP-defined format for pyproject.toml while poetry...

My take would be: - queueing locks only apply to `todo` jobs. Once they start running, it's out of scope - when a job is defered and shares a queuing...

> It is simple and even allows to send batch notifications. Yes, I think the whole point of debouncing was to allow batches. [EDIT]: ah, I guess you mean "by...

Hello! I like the idea and large parts of the work already done. I'm not sure I think a `retried` status is the best though. We had issues when we...

Hm, maybe I have, I'll take some time time and reread through, apologies.

> I don't understand the failure related to versioning of migrations. I tried multiple version schemes. none of them worked. This system is quite new so it's not impossible that...

When I can't rebase my mistakes away (because mainatainers can't rebase on a fork PR), it's much harder to do _🦄✨magic🪄🎩_

Thank you for your patience !

I've switched to the simpler ```python await my_task.batch_defer_async( {"a": 1, "b": 2}, {"a": 3, "b": 4}, {"a": 5, "b": 6}, ) ``` with a note on using `my_task.batch_defer(*payloads)`.