Add Py37 builder to the ubuntu-16.04 vagrant

This commit is contained in:
Robin Dunn
2019-03-04 11:24:11 -08:00
parent 53e8370e02
commit ce64eb025b

View File

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