From a1a8240960e863bf060cdcbead04344b1012c2f4 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 1 Feb 2017 22:46:21 -0500 Subject: [PATCH] Added additional spinner --- HISTORY.txt | 1 + pipenv/cli.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.txt b/HISTORY.txt index 5fc6ec8d..939abe1b 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,4 +1,5 @@ 3.3.3: + - Spinners! - Shell compatibility mode ($ pipenv shell -c). - Classic virtualenv location (within project) mode. - Removal of $ pipenv install --requirements. diff --git a/pipenv/cli.py b/pipenv/cli.py index 13cbc396..3e250911 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -328,7 +328,8 @@ def do_create_virtualenv(three=None, python=None): cmd = cmd + ['-p', python] # Actually create the virtualenv. - c = delegator.run(cmd, block=False) + with spinner(): + c = delegator.run(cmd, block=False) click.echo(crayons.blue(c.out), err=True) # Say where the virtualenv is.