Skip to content

Commit 6d26d2e

Browse files
author
bmartinn
committed
CI
1 parent b717df7 commit 6d26d2e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/pip/_internal/req/__init__.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def install_given_reqs(
6565

6666
install_args = [install_options, global_options, args, kwargs]
6767

68-
if Pool is not None and False:
68+
if to_install and Pool is not None:
6969
# first let's try to install in parallel, if we fail we do it by order.
7070
pool = Pool()
7171
try:
@@ -76,9 +76,6 @@ def install_given_reqs(
7676
except (KeyboardInterrupt, SystemExit):
7777
pool.terminate()
7878
raise
79-
except Exception:
80-
# we will reinstall sequentially
81-
pass
8279
pool.close()
8380
pool.join()
8481

0 commit comments

Comments
 (0)