diff --git a/vagrant/README.rst b/vagrant/README.rst index 1333584a..4583f4f0 100644 --- a/vagrant/README.rst +++ b/vagrant/README.rst @@ -55,7 +55,7 @@ example:: vagrant ssh -c "scripts/build.sh ubuntu-16.04" vagrant halt -Please note that currently this will do up to 6 complete builds, one for each +Please note that currently this will do up to 8 complete builds, one for each supported version of Python on that distro, for both gtk2 and gtk3. Additional parameters can be passed to the ``build.sh`` script to narrow the build down to a specific Python version or port. See ``scripts/build.sh`` for details. diff --git a/vagrant/ubuntu-14.04/bootstrap.sh b/vagrant/ubuntu-14.04/bootstrap.sh index 54de6e46..ac9b1958 100644 --- a/vagrant/ubuntu-14.04/bootstrap.sh +++ b/vagrant/ubuntu-14.04/bootstrap.sh @@ -18,6 +18,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.4 python3.4-dev libpython3.4-dev python3.4-venv 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 # 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. @@ -25,5 +26,6 @@ mkdir venvs virtualenv --python=python2.7 venvs/Py27 pyvenv-3.4 venvs/Py34 pyvenv-3.5 venvs/Py35 +pyvenv-3.6 venvs/Py36 chown -R vagrant:vagrant venvs