Travis: bump minimum version to 10.12

This commit is contained in:
Alberto Sottile 2019-02-05 21:46:59 +01:00
parent 5f3c81bb8d
commit 1dd22bc06c
2 changed files with 2 additions and 8 deletions

View File

@ -1,5 +1,5 @@
language: objective-c language: objective-c
osx_image: xcode7.3 osx_image: xcode8.3
branches: branches:
only: only:
@ -10,18 +10,12 @@ script:
before_install: before_install:
- brew update - brew update
- cd $(brew --repo homebrew/core)
#- git fetch --depth=20000
- git checkout 80860911cd26d9df62f3cc30575ed2076019ed1a
- cd $TRAVIS_BUILD_DIR
- brew upgrade python - brew upgrade python
- which python3 - which python3
- python3 --version - python3 --version
- which pip3 - which pip3
- pip3 --version - pip3 --version
- brew install pyside - brew install pyside
- ln -s /usr/local/lib/python3.7/site-packages/PySide2/libpyside2.cpython-37m-darwin.5.11.dylib /usr/local/lib/
- ln -s /usr/local/lib/python3.7/site-packages/PySide2/libshiboken2.cpython-37m-darwin.5.11.dylib /usr/local/lib/
- python3 -c "from PySide2 import __version__; print(__version__)" - python3 -c "from PySide2 import __version__; print(__version__)"
- python3 -c "from PySide2.QtCore import __version__; print(__version__)" - python3 -c "from PySide2.QtCore import __version__; print(__version__)"
- pip3 install py2app - pip3 install py2app

View File

@ -28,7 +28,7 @@ OPTIONS = {
'CFBundleName': 'Syncplay', 'CFBundleName': 'Syncplay',
'CFBundleShortVersionString': syncplay.version, 'CFBundleShortVersionString': syncplay.version,
'CFBundleIdentifier': 'pl.syncplay.Syncplay', 'CFBundleIdentifier': 'pl.syncplay.Syncplay',
'LSMinimumSystemVersion': '10.11.0', 'LSMinimumSystemVersion': '10.12.0',
'NSHumanReadableCopyright': 'Copyright © 2019 Syncplay All Rights Reserved' 'NSHumanReadableCopyright': 'Copyright © 2019 Syncplay All Rights Reserved'
} }
} }