We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d9e445 + 9efbfe4 commit ab0200dCopy full SHA for ab0200d
src/fromager/sources.py
@@ -54,7 +54,11 @@ def download_source(
54
raise ValueError(
55
f"do not know how to unpack {download_details}, expected 2 or 3 members"
56
)
57
- except Exception as err:
+ except (
58
+ resolvelib.InconsistentCandidate,
59
+ resolvelib.RequirementsConflicted,
60
+ resolvelib.ResolutionImpossible,
61
+ ) as err:
62
logger.debug(f"{req.name}: failed to resolve {req} using {url}: {err}")
63
continue
64
return (source_filename, version, source_url, source_type)
0 commit comments