no spinner on windows

This commit is contained in:
2017-03-10 23:13:47 -05:00
parent cc9a6dd76f
commit c9a57e2e07
+4
View File
@@ -25,3 +25,7 @@ PIPENV_MAX_DEPTH = int(os.environ.get('PIPENV_MAX_DEPTH', '3')) + 1
# Use shell compatibility mode when using venv in project mode.
if PIPENV_VENV_IN_PROJECT:
PIPENV_SHELL_COMPAT = True
# Disable spinner on windows.
if os.name == 'nt':
PIPENV_NOSPIN = True