From 5c79ddf8d80aba735ace597955cfae59958744ac Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 29 Sep 2017 15:11:24 -0400 Subject: [PATCH] next version Signed-off-by: Kenneth Reitz --- HISTORY.txt | 2 ++ pipenv/cli.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.txt b/HISTORY.txt index 9fa2e03e..0ae792b2 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -1,3 +1,5 @@ +8.2.3: + - Don't show activation instructions when --deploy is used. 8.2.2: - Improve system pip detection. 8.2.1: diff --git a/pipenv/cli.py b/pipenv/cli.py index 1c870adc..f4f9b04a 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1255,7 +1255,7 @@ def do_init( skip_lock=skip_lock, verbose=verbose, concurrent=concurrent) # Activate virtualenv instructions. - if not allow_global: + if not allow_global and not deploy: do_activate_virtualenv()