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.
1 parent c02103e commit 760c314Copy full SHA for 760c314
news/13424.feature.rst
@@ -0,0 +1 @@
1
+Handle pathologically connected dependency graphs in reasonable time.
src/pip/_internal/resolution/resolvelib/resolver.py
@@ -319,7 +319,7 @@ def visit(node: str | None) -> None:
319
320
# Now give back all the weights, choosing the largest ones from what we
321
# accumulated.
322
- return {node : max(wgts) for (node, wgts) in weights.items()}
+ return {node: max(wgts) for (node, wgts) in weights.items()}
323
324
325
def _req_set_item_sorter(
0 commit comments