From 6f90fbc4df3589ad9a57f8a8433788f23e52fe35 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Thu, 24 Nov 2016 09:19:50 +0000 Subject: [PATCH] Use QT 5.7 by default on Mac, and allow builds with Python 3.5. --- pkg/mac/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/mac/build.sh b/pkg/mac/build.sh index 469184896..430d06354 100755 --- a/pkg/mac/build.sh +++ b/pkg/mac/build.sh @@ -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