Skip to content

Commit 64a555b

Browse files
committed
show progress bar only for packages > 512 kiB
1 parent e61a864 commit 64a555b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pip/_internal/network/download.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _prepare_download(
5656
show_progress = False
5757
elif not total_length:
5858
show_progress = True
59-
elif total_length > (40 * 1000):
59+
elif total_length > (512 * 1024):
6060
show_progress = True
6161
else:
6262
show_progress = False

0 commit comments

Comments
 (0)