From b76820ebdeca3ade2644393521bfae04a91c2213 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Fri, 28 Mar 2014 16:27:45 -0400 Subject: [PATCH] Fixed bootstrapping under Python 3.3 --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 01f35b29..1cb1024b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -21,7 +21,7 @@ if [ ! -d "env" ]; then python get-pip.py $PIPARGS --force-reinstall fi deactivate - python3 -m venv env --system-site-packages + python3 -m venv env --upgrade --system-site-packages fi source env/bin/activate