Skip to content

Commit a7ef940

Browse files
committed
see if this fixes things for windows
Signed-off-by: Kenneth Reitz <[email protected]>
1 parent 8f84f3e commit a7ef940

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

pipenv/cli.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -689,9 +689,6 @@ def do_install_dependencies(
689689
sys.exit(0)
690690

691691
procs = []
692-
# pip install:
693-
if os.name == 'nt':
694-
deps_list = progress.bar(deps_list, label=STARTING_LABEL if os.name != 'nt' else '')
695692

696693
for dep, ignore_hash in deps_list:
697694

@@ -707,10 +704,8 @@ def do_install_dependencies(
707704
procs.append(c)
708705

709706
for c in progress.bar(procs, label=INSTALL_LABEL if os.name != 'nt' else ''):
710-
try:
711-
c.block()
712-
except ValueError:
713-
pass
707+
708+
c.block()
714709

715710
# The Installtion failed...
716711
if c.return_code != 0:

0 commit comments

Comments
 (0)