Skip to content
Open
Show file tree
Hide file tree
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: 3 additions & 1 deletion src/fromager/bootstrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -913,9 +913,11 @@ def _resolve_from_version_source(
return None
try:
# no need to pass req type to enable caching since we are already using the graph as our cache
# do not cache candidates
provider = resolver.GenericProvider(
version_source=lambda x, y, z: version_source,
version_source=lambda identifier: version_source,
constraints=self.ctx.constraints,
use_resolver_cache=False,
)
return resolver.resolve_from_provider(provider, req)
except Exception as err:
Expand Down
Loading
Loading