We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Python - pip and pip-compile
Reproducible with the following input file:
job: allowed-updates: - dependency-type: direct update-type: all package-manager: pip source: provider: github repo: opentracing-contrib/nginx-opentracing commit: 69dd153598307375363650ea301c92cb59d997f3 api-endpoint: https://api.github.com/ hostname: github.com directories: - "/**/*"
Run with the Dependabot CLI: dependabot update -f input.yml
dependabot update -f input.yml
The issue seems to be caused by the FileFetcher's behavior in the Python ecosystem of searching subdirectories for requirements files:
dependabot-core/python/lib/dependabot/python/file_fetcher.rb
Lines 243 to 257 in 4420d67
This results in the same requirements file appearing twice, thus it puts up 2 PRs.
We'll need to analyze why this behavior exists and maybe remove it. Ideally Dependabot would only process the directory it was given.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
Package ecosystem
Python - pip and pip-compile
What you expected to see, versus what you actually saw
Reproducible with the following input file:
Run with the Dependabot CLI:
dependabot update -f input.yml
The issue seems to be caused by the FileFetcher's behavior in the Python ecosystem of searching subdirectories for requirements files:
dependabot-core/python/lib/dependabot/python/file_fetcher.rb
Lines 243 to 257 in 4420d67
This results in the same requirements file appearing twice, thus it puts up 2 PRs.
We'll need to analyze why this behavior exists and maybe remove it. Ideally Dependabot would only process the directory it was given.
The text was updated successfully, but these errors were encountered: