We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3591a55 commit 86de37bCopy full SHA for 86de37b
src/pip/_internal/operations/prepare.py
@@ -356,11 +356,11 @@ def _fetch_metadata_only(
356
)
357
return None
358
# Try PEP 658 metadata first, then fall back to lazy wheel if unavailable.
359
- return self._fetch_metadata_using_pep_658(
+ return self._fetch_metadata_using_link_data_attr(
360
req
361
) or self._fetch_metadata_using_lazy_wheel(req.link)
362
363
- def _fetch_metadata_using_pep_658(
+ def _fetch_metadata_using_link_data_attr(
364
self,
365
req: InstallRequirement,
366
) -> Optional[BaseDistribution]:
0 commit comments