From b0001ef94c80bd07b4a727128393532bd7535e1d Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Sun, 9 Jun 2013 05:41:25 +0000 Subject: [PATCH] Make sure setuptools/distribute is present in new dev virtualenvs. --- scripts/make-dev-virtualenv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-dev-virtualenv.sh b/scripts/make-dev-virtualenv.sh index cd3a128..adf8c76 100755 --- a/scripts/make-dev-virtualenv.sh +++ b/scripts/make-dev-virtualenv.sh @@ -44,7 +44,7 @@ if test "$okay" -eq 0 ; then fi printf "Using '$name' as our project's name..." printf "Creating virtualenv..." - mkvirtualenv -a "$PWD" --no-site-packages \ + mkvirtualenv -a "$PWD" --no-site-packages --unzip-setuptools \ --distribute --prompt="(gnupg)" "$name" exit $? else