File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/pip/_internal/resolution/resolvelib Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ class PipReporter(BaseReporter):
13
13
def __init__ (self ) -> None :
14
14
self .backtracks_by_package : DefaultDict [str , int ] = defaultdict (int )
15
15
16
- reduce_backtracking_url = "https://pip.pypa.io/en/latest/topics/dependency-resolution/#possible-ways-to-reduce-backtracking" # noqa: E501
17
16
self ._messages_at_backtrack = {
18
17
1 : (
19
18
"pip is looking at multiple versions of {package_name} to "
@@ -28,8 +27,8 @@ def __init__(self) -> None:
28
27
13 : (
29
28
"This is taking longer than usual. You might need to provide "
30
29
"the dependency resolver with stricter constraints to reduce "
31
- f "runtime. See { reduce_backtracking_url } for tips and/or "
32
- "press Ctrl + C to abort this run."
30
+ "runtime. See https://pip.pypa.io/warnings/backtracking for "
31
+ "tips and/or press Ctrl + C to abort this run."
33
32
),
34
33
}
35
34
You can’t perform that action at this time.
0 commit comments