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 8f84f3e commit a7ef940Copy full SHA for a7ef940
pipenv/cli.py
@@ -689,9 +689,6 @@ def do_install_dependencies(
689
sys.exit(0)
690
691
procs = []
692
- # pip install:
693
- if os.name == 'nt':
694
- deps_list = progress.bar(deps_list, label=STARTING_LABEL if os.name != 'nt' else '')
695
696
for dep, ignore_hash in deps_list:
697
@@ -707,10 +704,8 @@ def do_install_dependencies(
707
704
procs.append(c)
708
705
709
706
for c in progress.bar(procs, label=INSTALL_LABEL if os.name != 'nt' else ''):
710
- try:
711
- c.block()
712
- except ValueError:
713
- pass
+
+ c.block()
714
715
# The Installtion failed...
716
if c.return_code != 0:
0 commit comments