What is the best practice to automatically update python dependencies when working with poetry
on github
?
I would simply set up an action that runs poetry update
(https://python-poetry.org/docs/cli/#update) in a new branch and opens a PR.
This method makes dependabot
and renovate
unnecessary, and since I'm used to working with those with other programming languages, I want to check whether my intuition about this as a best practice is a good one.
Side note: poetry
+ dependabot
do not seem to be a good option because of this issue for which I haven't found a good solution.