From 18d820226e445441e0fbc4aa5cd8570005a71dfb Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 16 Jul 2018 16:03:40 -0700 Subject: [PATCH 1/2] Add Python 3.7 build on Fedora-28 --- vagrant/fedora-28/bootstrap.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 From 3f3341cb3591829d743f1ed80e39b934d432f4dd Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 16 Jul 2018 18:46:37 -0700 Subject: [PATCH 2/2] Add changelog item --- CHANGES.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 7a890e6d..bb57cac4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -34,6 +34,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) +