Update package ecosystem for Dependabot configuration#1
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request adds a Dependabot configuration file to enable automated dependency updates. The configuration is intended to monitor Python dependencies in the project's pyproject.toml file and create pull requests for updates on a weekly schedule.
Changes:
- Added
.github/dependabot.ymlconfiguration file with version update settings
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: "uv" # See documentation for possible values |
There was a problem hiding this comment.
The package ecosystem "uv" is not a valid Dependabot ecosystem. As of January 2025, Dependabot does not natively support the uv package manager. For Python projects using pyproject.toml (even when managed with uv), the correct ecosystem value should be "pip". Dependabot will read the dependencies from pyproject.toml when using the "pip" ecosystem.
| - package-ecosystem: "uv" # See documentation for possible values | |
| - package-ecosystem: "pip" # See documentation for possible values |
No description provided.