Replies: 1 comment 2 replies
-
I run this everyday: pip list --outdated It tells me which dependencies have an update. Then I try running tests with the latest versions. If successfully, the minimum version is bumped. If not successful, (or there is a conflict), the dependency stays where it is. As of today, the only dependency that can't go to the latest version is For trusted dependencies, I use In some special cases, instead of using Dependencies change often, so I run |
Beta Was this translation helpful? Give feedback.
-
I'm very curious what are the steps, procedures that @mdmintz follow to update each dependency.
How do you know which dependencies have a new version? If you can upgrade them without breaking project (his might be covered by infra tests), what about child dependencies too because they are probably upgraded automatically when upgrading a top-level package.
Beta Was this translation helpful? Give feedback.
All reactions