Skip to content
Merged
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
7 changes: 7 additions & 0 deletions conda_rattler_solver/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,6 +657,13 @@ def _maybe_raise_for_problems(
unsatisfiable[spec.name] = spec
else:
not_found[spec.name] = spec

# Raise the exception for conda-build if needed
self._maybe_raise_for_conda_build(
{**unsatisfiable, **not_found},
message=problems,
)

if not unsatisfiable and not_found:
log.debug(
"Inferred PackagesNotFoundError %s from conflicts:\n%s",
Expand Down
Loading