Use QT 5.7 by default on Mac, and allow builds with Python 3.5.

pull/3/head
Dave Page 2016-11-24 09:19:50 +00:00
parent 478c7ba7a4
commit 6f90fbc4df
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ else
exit 1
fi
if [ "$PYTHON_VERSION" -gt "34" -a "$PYTHON_VERSION" -lt "26" ]; then
if [ "$PYTHON_VERSION" -gt "35" -a "$PYTHON_VERSION" -lt "26" ]; then
echo "Python version not supported"
exit 1
fi
@ -41,7 +41,7 @@ fi
if [ "x$QTDIR" == "x" ]; then
echo "QTDIR not set. Setting it to default"
export QTDIR=~/Qt/5.5/clang_64
export QTDIR=~/Qt/5.7/clang_64
fi
export QMAKE=$QTDIR/bin/qmake
if ! $QMAKE --version > /dev/null 2>&1; then