Commit 11974fe 1 parent 2a5fdd8 commit 11974fe Copy full SHA for 11974fe
File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2
+ # mostly from https://github.com/microsoft/torchgeo/blob/main/.github/dependabot.yml
3
+ version : 2
4
+ updates :
5
+ - package-ecosystem : " github-actions"
6
+ directory : " /"
7
+ schedule :
8
+ interval : " weekly"
9
+ - package-ecosystem : " pip"
10
+ directory : " /"
11
+ schedule :
12
+ interval : " daily"
13
+ groups :
14
+ # torchvision pins torch, must update in unison
15
+ torch :
16
+ patterns :
17
+ - " torch"
18
+ - " torchvision"
19
+ ignore :
20
+ # setuptools releases new versions almost daily
21
+ - dependency-name : " setuptools"
22
+ update-types : ["version-update:semver-patch"]
23
+ # segmentation-models-pytorch pins timm, must update in unison
24
+ - dependency-name : " timm"
You can’t perform that action at this time.
0 commit comments