2024-04-26 15:15:53 +03:00
|
|
|
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
2022-06-05 22:18:43 +03:00
|
|
|
version: 2
|
|
|
|
updates:
|
2024-04-26 15:15:53 +03:00
|
|
|
- package-ecosystem: 'devcontainers'
|
|
|
|
directory: '/.devcontainer'
|
|
|
|
schedule:
|
|
|
|
interval: 'weekly'
|
2022-10-04 02:05:21 +03:00
|
|
|
- package-ecosystem: 'github-actions'
|
|
|
|
directory: '/'
|
|
|
|
schedule:
|
|
|
|
interval: 'weekly'
|
2022-06-05 22:18:43 +03:00
|
|
|
- package-ecosystem: 'pip'
|
2022-06-19 21:08:37 +03:00
|
|
|
directory: '/requirements'
|
2022-06-05 22:18:43 +03:00
|
|
|
schedule:
|
|
|
|
interval: 'daily'
|
2024-04-26 15:15:53 +03:00
|
|
|
groups:
|
|
|
|
# torchvision pins torch, must update in unison
|
|
|
|
torch:
|
|
|
|
patterns:
|
|
|
|
- 'torch'
|
|
|
|
- 'torchvision'
|
2022-06-05 22:18:43 +03:00
|
|
|
ignore:
|
2022-08-31 21:28:53 +03:00
|
|
|
# setuptools releases new versions almost daily
|
|
|
|
- dependency-name: 'setuptools'
|
|
|
|
update-types: ['version-update:semver-patch']
|
2024-03-11 13:03:57 +03:00
|
|
|
# sphinx 6 is incompatible with pytorch-sphinx-theme
|
2023-02-26 19:36:55 +03:00
|
|
|
# https://github.com/pytorch/pytorch_sphinx_theme/issues/175
|
|
|
|
- dependency-name: 'sphinx'
|
2024-04-26 15:15:53 +03:00
|
|
|
versions: '>=6'
|
2024-08-27 14:10:57 +03:00
|
|
|
# segmentation-models-pytorch pins timm, must update in unison
|
|
|
|
- dependency-name: 'timm'
|
2022-06-05 22:18:43 +03:00
|
|
|
- package-ecosystem: 'npm'
|
2022-06-19 21:08:37 +03:00
|
|
|
directory: '/'
|
2022-06-05 22:18:43 +03:00
|
|
|
schedule:
|
2022-10-04 02:05:21 +03:00
|
|
|
interval: 'weekly'
|
2024-09-10 18:27:51 +03:00
|
|
|
versioning-strategy: 'lockfile-only'
|