You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tbh, I'd question if employing dependabot to maintain the requirements files is worthwhile. # 227 updated 16 or so dependencies - if dependabot were to have managed it that would have been (I believe) 16 separate commits clogging up the commit history.
Manually updating the dependencies is a simple enough affair - just commit the changes from the following:
I'm now thinking the ideal would be to do as above, although additionally have dependabot set up for just the requirements.txt dependencies (not the dev). I wouldn't suggest merging the PRs that dependabot raises (rely instead on the above), but setting up dependabot for just the main requirements gives an immediate heads up if a dependency upgrade has broken exchange_calendars (the tests for the dependabot PR will show as failing). Otherwise we could go a month without any reason to suspect that the package is broken.
@gerrymanoim, as I think you've mentioned before, looks like setting up dependabot for just the requirements.txt would necessitate having this file in a separate directory to the rest of the requirements. Perhaps move requirements.txt out of etc/ and into the root directory? EDIT that wouldn't work, requirements.txt would need to go in its own directory, with no directories under it, and the dependabot 'directory' config option would need to be set to this directory.
If were to change the location of requirements.txt then would need to revise all the workflows that look at it.
Hi @gerrymanoim, I've just updated the dependencies in #227.
tbh, I'd question if employing dependabot to maintain the requirements files is worthwhile. # 227 updated 16 or so dependencies - if dependabot were to have managed it that would have been (I believe) 16 separate commits clogging up the commit history.
Manually updating the dependencies is a simple enough affair - just commit the changes from the following:
Maybe just use dependabot for github actions and update the requirements manually once a month or so?
Perhaps it would even be possible to write a github actions workflow to run the above and raise a PR once a month with the resulting changes?
Originally posted by @maread99 in #217 (comment)
The text was updated successfully, but these errors were encountered: