diff --git a/CHANGES.rst b/CHANGES.rst index cd5625cf..1acbcf98 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -63,6 +63,8 @@ Changes in this release include the following: so it doesn't have to enable all warnings to get them to be shown by default. (#902) +* Added a Python 3.7 builder on Fedora 28. (#925) + diff --git a/vagrant/fedora-28/bootstrap.sh b/vagrant/fedora-28/bootstrap.sh index dcbb75fc..ccb1aa5b 100644 --- a/vagrant/fedora-28/bootstrap.sh +++ b/vagrant/fedora-28/bootstrap.sh @@ -20,12 +20,13 @@ dnf -y install gtk2 gtk2-devel gtk3 gtk3-devel \ # Install all available Python packages and their dev packages dnf -y install python python-tools python-devel python2-virtualenv dnf -y install python3 python3-tools python3-devel -#dnf -y install python35 +dnf -y install python37 + # 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. mkdir venvs virtualenv --python=python2.7 venvs/Py27 -#python3.5 -m venv venvs/Py35 python3.6 -m venv venvs/Py36 +python3.7 -m venv venvs/Py37 chown -R vagrant:vagrant venvs