Fix for Vagrantfile: pip install -e ., so we don't break on git requirement

This commit is contained in:
William Budington 2015-05-20 18:56:07 -07:00
parent ead60d8f4b
commit 73021673ff

2
Vagrantfile vendored
View file

@ -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