diff --git a/.github/dependatbot.yml b/.github/dependatbot.yml new file mode 100644 index 0000000..d82246c --- /dev/null +++ b/.github/dependatbot.yml @@ -0,0 +1,18 @@ +# Config for Dependabot updates. See Documentation here: +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # Enable version updates for Python (uv). + # This project is uv-managed: deps live in pyproject.toml + uv.lock . + # We want to update minor and patch versions, but not major versions, to avoid breaking changes. + - package-ecosystem: 'uv' + directory: '/' + # Every weekday + schedule: + interval: 'daily' + groups: + python: + update-types: + - 'minor' + - 'patch' \ No newline at end of file