From dd7b3d022dd9be99af44fcf0553809be5170ff3c Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 16 Jul 2018 19:01:02 -0700 Subject: [PATCH] Merge pull request #929 from RobinD42/fix-issue925 Add Python 3.7 build on Fedora-28 (cherry picked from commit f8a2c7f0cccc4fca0f4cf1461322d449cce3e329) --- CHANGES.rst | 2 ++ vagrant/fedora-28/bootstrap.sh | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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