From 73021673ffe9fc98a5c81540141096cb4eaf9863 Mon Sep 17 00:00:00 2001 From: William Budington Date: Wed, 20 May 2015 18:56:07 -0700 Subject: [PATCH] Fix for Vagrantfile: pip install -e ., so we don't break on git requirement --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 1d3b48f06..ce2222526 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,7 +10,7 @@ cd /vagrant sudo ./bootstrap/ubuntu.sh if [ ! -d "venv" ]; then virtualenv --no-site-packages -p python2 venv - ./venv/bin/pip install -r requirements.txt -e .[dev,docs,testing] + ./venv/bin/pip install -e . fi SETUP_SCRIPT