From cd6e4b633b5da43aee182a888abaa78d149cecaa Mon Sep 17 00:00:00 2001 From: David Vierra Date: Sun, 19 Mar 2017 12:28:46 -1000 Subject: [PATCH] OS X CI: Install pyside+qt from third party source --- .travis.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1064c63..9330bba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,7 +28,18 @@ install: - pip install git+http://github.com/pyinstaller/pyinstaller - - brew install pyside pyside-tools + # Install qt4 from third-party source + # https://github.com/cartr/homebrew-qt4 + - brew tap cartr/qt4 + - brew tap-pin cartr/qt4 + - brew install cartr/qt4/qt + - brew install pyside@1.2 pyside-tools@1.2 + + # where are libs? + - python -c 'from PySide.QtCore import QCoreApplication;app = QCoreApplication([]);print([str(p) for p in app.libraryPaths()])' + + # - brew install pyside pyside-tools + # Install mcedit. - python setup.py develop