From 07874252f50c3d423d3fdac2cb07ea31952348af Mon Sep 17 00:00:00 2001 From: stonebig Date: Sat, 20 May 2023 13:22:38 +0200 Subject: [PATCH 1/3] make rejection message for count 8 slightly different --- src/pip/_internal/resolution/resolvelib/reporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pip/_internal/resolution/resolvelib/reporter.py b/src/pip/_internal/resolution/resolvelib/reporter.py index 3c724238a..3be4bd17e 100644 --- a/src/pip/_internal/resolution/resolvelib/reporter.py +++ b/src/pip/_internal/resolution/resolvelib/reporter.py @@ -22,7 +22,7 @@ class PipReporter(BaseReporter): 8: ( "pip is looking at multiple versions of {package_name} to " "determine which version is compatible with other " - "requirements. This could take a while." + "requirements. This could take quite a while." ), 13: ( "This is taking longer than usual. You might need to provide " From 1552934c088269437ca183a18a571833e94c8c05 Mon Sep 17 00:00:00 2001 From: stonebig Date: Sat, 20 May 2023 17:12:03 +0200 Subject: [PATCH 2/3] Update reporter.py --- src/pip/_internal/resolution/resolvelib/reporter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pip/_internal/resolution/resolvelib/reporter.py b/src/pip/_internal/resolution/resolvelib/reporter.py index 3be4bd17e..12adeff7b 100644 --- a/src/pip/_internal/resolution/resolvelib/reporter.py +++ b/src/pip/_internal/resolution/resolvelib/reporter.py @@ -20,9 +20,9 @@ class PipReporter(BaseReporter): "requirements. This could take a while." ), 8: ( - "pip is looking at multiple versions of {package_name} to " + "pip is still looking at multiple versions of {package_name} to " "determine which version is compatible with other " - "requirements. This could take quite a while." + "requirements. This could take a while." ), 13: ( "This is taking longer than usual. You might need to provide " From 1d74e7abbdc9a9ef0226ae1c6c410962bbdf501b Mon Sep 17 00:00:00 2001 From: stonebig Date: Sat, 20 May 2023 17:39:36 +0200 Subject: [PATCH 3/3] Create 12040.feature.rst --- news/12040.feature.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/12040.feature.rst diff --git a/news/12040.feature.rst b/news/12040.feature.rst new file mode 100644 index 000000000..beff856f9 --- /dev/null +++ b/news/12040.feature.rst @@ -0,0 +1 @@ +make rejection messages slightly different between 1 and 8, so the user can make the difference.