[BUG] (term) is not satisfied.
Package:
poetry
16152

Exception Class:
RuntimeError
Raise code
else:
assigned_term = assigned_term.intersect(assignment)
# As soon as we have enough assignments to satisfy term, return them.
if assigned_term.satisfies(term):
return assignment
raise RuntimeError(f"[BUG] {term} is not satisfied.")
def satisfies(self, term: Term) -> bool:
return self.relation(term) == SetRelation.SUBSET
def relation(self, term: Term) -> int:
positive = self._positive.get(term.dependency.complete_name)
if positive is not None:
Links to the raise (1)
https://github.com/python-poetry/poetry/blob/9591e88492508d4dba260952d53266a0032c04c7/poetry/mixology/partial_solution.py#L202NO FIXES YET
Just press the button and we will add solution
to this exception as soon as possible
* As many users press the button, the faster we create a fix
Add a possible fix
Please authorize to post fix