Merge pull request #929 from RobinD42/fix-issue925

Add Python 3.7 build on Fedora-28
(cherry picked from commit f8a2c7f0cc)
This commit is contained in:
Robin Dunn
2018-07-16 19:01:02 -07:00
parent 7f44c91c5e
commit dd7b3d022d
2 changed files with 5 additions and 2 deletions

View File

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

View File

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