-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Review Dependabot security alerts #579
Comments
This is confusing me because I would have expected all dependencies to be kept up to date by dependabot. It's certainly updating some things but clearly not everything. Is it something to do with this? More research is needed ... |
It looks like github is picking up the security updates from requirements.dev.txt and requirements.prod.txt, but dependabot uses pyproject.toml to look for version updates According to this page the default is to check explicitly defined dependencies for updates; possibly if we included
in the dependabot.yml, it would pick up indirect dependencies (e.g. the numpy is a dependency of pandas, not explicilty stated in the pyproject.toml). |
Although, looking at the list of PRs that dependabot has created, I think it may in fact only be looking at the dev ones. Pandas was at v1.3.4 and the latest is 1.4.3 (which also pulls in the numpy version that the security update wants) I thought I found issues that implied that dependabot did deal with pyproject.toml now, but maybe it only supports poetry dependencies? |
No description provided.
The text was updated successfully, but these errors were encountered: