From ce64eb025b21c13be0962ff8e975a5016600cb29 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 4 Mar 2019 11:24:11 -0800 Subject: [PATCH] Add Py37 builder to the ubuntu-16.04 vagrant --- vagrant/ubuntu-16.04/bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vagrant/ubuntu-16.04/bootstrap.sh b/vagrant/ubuntu-16.04/bootstrap.sh index 5993fc2b..78262a83 100644 --- a/vagrant/ubuntu-16.04/bootstrap.sh +++ b/vagrant/ubuntu-16.04/bootstrap.sh @@ -20,6 +20,7 @@ apt-get install -y libjpeg-dev libtiff-dev \ apt-get install -y python2.7 python2.7-dev libpython2.7-dev python-virtualenv apt-get install -y python3.5 python3.5-dev libpython3.5-dev python3.5-venv apt-get install -y python3.6 python3.6-dev libpython3.6-dev python3.6-venv +apt-get install -y python3.7 python3.7-dev libpython3.7-dev python3.7-venv # Set up virtual environments for each Python where the Phoenix builds will be # done. set them to the vagrant user so the venv's can be updated by pip later. @@ -27,6 +28,7 @@ mkdir venvs virtualenv --python=python2.7 venvs/Py27 pyvenv-3.5 venvs/Py35 python3.6 -m venv venvs/Py36 +python3.7 -m venv venvs/Py37 chown -R vagrant:vagrant venvs