-
Notifications
You must be signed in to change notification settings - Fork 14
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
⚡ Prepare for metadata-only resolves #113
Conversation
841ab88
to
75fcba0
Compare
Codecov ReportPatch coverage:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## master #113 +/- ##
==========================================
- Coverage 78.16% 77.88% -0.28%
==========================================
Files 29 29
Lines 2807 2831 +24
Branches 789 794 +5
==========================================
+ Hits 2194 2205 +11
- Misses 440 448 +8
- Partials 173 178 +5
☔ View full report in Codecov by Sentry. |
06620d4
to
7f2edf5
Compare
7f2edf5
to
32e6a7b
Compare
Released 0.10.5 |
Does that mean pipgrip won't fetch and build wheel from now on? |
Hi @LanYuqiao 👋 Yes, with a few prerequisites: edit: moved to PR description |
@ddelange Thanks for the works! That's a great job:->👍 |
And I think the main page README should update the fetch/build description |
True, I'll update the README once the pip PR merges! |
With a lot of excitement, adding support for pip's new --dry-run --report functionality.
With this PR, a wheel download is no longer necessary if:
.tar.gz
), or there are no compatible wheels, pip has no other choice than to build the wheel (run setup.py).The project in question uploaded those wheels after ~ June 2023, the time of rollout of PEP 658 metadata generation and serving on PyPI (a backfill for older wheels is planned ref cache metadata lookups for sdists and lazy wheels pypa/pip#12256 (comment)).The backfill was completed ref Expose the METADATA file of wheels in the simple API pypi/warehouse#8254 (comment)Closes #40 🎉