Skip to content
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

Skip invalid wheels #12

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/common/hacks.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""This module is where I put things that I'm not proud of."""

from pip._internal.exceptions import UnsupportedWheel
from pip._internal.exceptions import UnsupportedWheel, InvalidWheel
from pip._internal.network.lazy_wheel import dist_from_wheel_url
from pip._internal.network.session import PipSession

Expand All @@ -21,6 +21,6 @@ def metadata_from_wheel_url(
session = create_session()
try:
dist = dist_from_wheel_url(name=project_name, url=wheel_url, session=session)
except UnsupportedWheel:
except (UnsupportedWheel, InvalidWheel):
return None
return dist.read_text("METADATA")