Merge pull request #430 from Hainish/vagrantfile-fix

Fix Debian dependencies, and add the required openssl header file
This commit is contained in:
schoen 2015-05-22 12:47:21 -07:00
commit 149cd56c0b

2
Vagrantfile vendored
View file

@ -8,6 +8,8 @@ VAGRANTFILE_API_VERSION = "2"
$ubuntu_setup_script = <<SETUP_SCRIPT
cd /vagrant
sudo ./bootstrap/ubuntu.sh
sudo apt-get -y --no-install-recommends install git-core
# the above is required by the 'git+https' lines of requirements.txt
if [ ! -d "venv" ]; then
virtualenv --no-site-packages -p python2 venv
./venv/bin/pip install -r requirements.txt -e .[dev,docs,testing]