https://dagster.io/ logo
#random
Title
m

Martin Carlsson

12/10/2021, 9:59 AM
I know this is more of a GitHub question .. however, maybe I get lucky and someone here has a solution 😄 I’m using GitHub Dependabot to keep my dependencies up to date. Every time a package has a new version, Dependabot creates a new branch and GitHub Actions takes over and run my tests .. isn’t the world beautiful However, when Dagster is updated, my tests always fails because I both have Dagit and Dagster - Dependabot creates a seperate branch for each package, and if Dagit and Dagster doesn’t have the same version, it fails. What can I do here 😊
n

Noah K

12/10/2021, 10:22 AM
Try Renovate?
It's a little better about batching changes
k

Kay Hoogland

12/10/2021, 10:27 AM
What if you would only include
dagit
in your requirements.txt? Since you use both, updating
dagit
would automatically also update
dagster
2
m

Martin Carlsson

12/10/2021, 12:47 PM
@Noah K I'll have a look at it, thanks
@Kay Hoogland aaah that makes sense 💪 thank you