The Dependabot setup instructions don't explicitly mention projects which keep all of their dependency information in setup.py
.
It works just fine with those kinds of projects. To start it working, create a file in .github/dependabot.yml
with the following contents:
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
Then navigate to https://github.com/simonw/s3-credentials/network/updates (but for your project) - that's Insights -> Dependency graph -> Dependabot - to confirm that it worked.
Created 2022-01-14T16:33:03-08:00 · Edit