From db146e3c8c9e53800352a8b1c4293803585e5218 Mon Sep 17 00:00:00 2001 From: Matthew Einhorn Date: Sun, 9 Jun 2019 18:00:45 -0400 Subject: [PATCH] 3.5.7 doesn't have compiled binaries. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 773c4e5e8..c40938722 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,7 +42,7 @@ matrix: - docker - language: generic os: osx - env: PYVERS="3.5.7 3.6.8 3.7.3" PY=3 RUN=wheels USE_PANGOFT2=0 + env: PYVERS="3.5.4 3.6.8 3.7.3" PY=3 RUN=wheels USE_PANGOFT2=0 name: "OSX - wheel generation" - language: generic env: PY=3 RUN=app USE_PANGOFT2=0 @@ -110,8 +110,8 @@ install: fi; if [ "${RUN}" == "unit" ]; then export PATH=$PATH:$HOME/Library/Python/3.5/bin; - curl -O -L https://www.python.org/ftp/python/3.5.2/python-3.5.2-macosx10.6.pkg; - sudo installer -package python-3.5.2-macosx10.6.pkg -target /; + curl -O -L https://www.python.org/ftp/python/3.5.4/python-3.5.4-macosx10.6.pkg; + sudo installer -package python-3.5.4-macosx10.6.pkg -target /; python3 get-pip.py --user; python3 -m pip install --upgrade --user cython pillow pytest mock docutils PyInstaller; fi;