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.