The dependencies and dependents in the Insights -> Dependency graph of my repository do not match the expectations #166968
Replies: 3 comments
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
-
|
Hi @myhloli This is a known problem with GitHub's dependency detection system. Even with PEP 621 compliant pyproject.toml files, the dependency graph often fails to work properly. Quick Fixes to Try: Make a small commit to your pyproject.toml (add a comment) This sometimes triggers GitHub to re-scan dependencies Add requirements.txt Generate: pip freeze > requirements.txt Commit this file - GitHub handles requirements.txt more reliably than pyproject.toml Verify Format Ensure dependencies are under [project] section with proper array format Check file is in repository root (which yours is) Root Cause Best Solution Repository URL: https://github.com/opendatalab/MinerU PyPI package "mineru" not showing in dependents Dependencies not appearing despite valid pyproject.toml This usually requires manual intervention from GitHub's team to fix the indexing. If You Find This HelpFull U Can Check It As Answered |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Body
repository:https://github.com/opendatalab/MinerU
There is a pyproject.toml file in the root directory of my repository, and it complies with the PEP standards.
However, the Dependency Graph feature is completely malfunctioning. I cannot see the PyPI packages that my project depends on in the "dependencies" section, nor can I see other projects that depend on our project in the "dependents" section (the PyPI package name "mineru" is not available as an option in dependents).
Beta Was this translation helpful? Give feedback.
All reactions