mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
travis osx: Install python3 from python.org & build Pillow from source
Unlike python of Homebrew, the python.org version comes bundled with a recent Tk that is much less buggy than macOS stock Tk. py2app does not seem to work with Pillow's pypi wheels.
This commit is contained in:
parent
dc86d9338d
commit
fb8d69b1c8
2 changed files with 16 additions and 12 deletions
25
.travis.yml
25
.travis.yml
|
@ -1,8 +1,6 @@
|
|||
addons:
|
||||
homebrew:
|
||||
brewfile: true
|
||||
packages:
|
||||
- python3
|
||||
update: true
|
||||
cache:
|
||||
directories:
|
||||
|
@ -20,18 +18,25 @@ deploy:
|
|||
skip_cleanup: true
|
||||
dist: bionic
|
||||
before_install:
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then wget --content-disposition https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/minimal/PySolFC-Cardsets--Minimal-2.0.tar.xz/download && tar xJf PySolFC-Cardsets--Minimal-2.0.tar.xz && mv PySolFC-Cardsets--Minimal-2.0/cardset-* data ; fi
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then
|
||||
wget --content-disposition https://sourceforge.net/projects/pysolfc/files/PySolFC-Cardsets/minimal/PySolFC-Cardsets--Minimal-2.0.tar.xz/download &&
|
||||
tar xJf PySolFC-Cardsets--Minimal-2.0.tar.xz &&
|
||||
mv PySolFC-Cardsets--Minimal-2.0/cardset-* data ;
|
||||
fi
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then
|
||||
PYVER=3.8.2 &&
|
||||
PYVER_SHORT=3.8 &&
|
||||
wget -O python.pkg "https://www.python.org/ftp/python/${PYVER}/python-${PYVER}-macosx10.9.pkg" &&
|
||||
sudo installer -pkg python.pkg -target / &&
|
||||
export PATH="/Library/Frameworks/Python.framework/Versions/${PYVER_SHORT}/bin:${PATH}" ;
|
||||
fi
|
||||
install:
|
||||
# Tests are failing for them sometimes
|
||||
- sudo cpanm --notest Capture::Tiny IPC::System::Simple
|
||||
- sudo cpanm Code::TidyAll::Plugin::Flake8 Perl::Tidy Test::Code::TidyAll Test::Differences Test::TrailingSpace
|
||||
|
||||
# Taken from https://github.com/mesa3d/mesa/blob/4d57a2750485e51b34e0bc413100e4e2787a4e84/.travis.yml
|
||||
# thanks!
|
||||
# Set PATH for homebrew pip3 installs
|
||||
- PYTHON_VERSION=$(python3 -V | awk '{print $2}' | cut -d. -f1-2)
|
||||
- PATH="$HOME/Library/Python/$PYTHON_VERSION/bin:${PATH}"
|
||||
- export PY_MODS='attrs configobj pycotap pysol-cards random2 setuptools six'
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then export PY_MODS="--no-binary=Pillow Pillow $PY_MODS" ; fi
|
||||
- sudo pip3 install --upgrade $PY_MODS flake8 flake8-import-order
|
||||
- sudo pip2 install --upgrade $PY_MODS
|
||||
language: generic
|
||||
|
@ -55,6 +60,6 @@ matrix:
|
|||
script:
|
||||
- export TIDYALL_DATA_DIR="$HOME/tidyall_d"
|
||||
- bash -x scripts/travis-ci-build
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then PYTHONPATH="`pwd`" python3 setup_osx.py py2app ; fi
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then PYTHONPATH="." python3 setup_osx.py py2app ; fi
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then find . -iname '*.app' ; fi
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then (cd dist; tar -cvf ../PySolFC.app.tar PySolFC.app/ ; ); xz PySolFC.app.tar ; fi
|
||||
- if test "$TRAVIS_OS_NAME" = "osx" ; then (cd dist && tar -cvf ../PySolFC.app.tar PySolFC.app/) && xz PySolFC.app.tar ; fi
|
||||
|
|
3
Brewfile
3
Brewfile
|
@ -2,8 +2,7 @@ brew "perl"
|
|||
brew "cpanminus"
|
||||
brew "gettext", link: true
|
||||
brew "gnutls"
|
||||
brew "jpeg"
|
||||
brew "openssl"
|
||||
brew "tcl-tk"
|
||||
brew "python@2"
|
||||
brew "python"
|
||||
brew "pyenv-virtualenv"
|
||||
|
|
Loading…
Add table
Reference in a new issue