From c9a57e2e070af027ab59fdb21036802e9c80d3a8 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 10 Mar 2017 23:13:47 -0500 Subject: [PATCH] no spinner on windows --- pipenv/environments.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pipenv/environments.py b/pipenv/environments.py index 82b686da..25e13b43 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -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 \ No newline at end of file