From f6c70312c9d5c5688028a0b73bde5ff9884d00e6 Mon Sep 17 00:00:00 2001 From: Tucker Barbour Date: Fri, 2 Mar 2018 14:26:13 +0000 Subject: [PATCH] Fix Homebrew python package Homebrew removed python3 and python now defaults to version 3. Here we use `brew upgrade python` to upgrade the pre-installed version of python to python3. --- .travis/osx_before_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/osx_before_install.sh b/.travis/osx_before_install.sh index 91ad0276..3a47e571 100644 --- a/.travis/osx_before_install.sh +++ b/.travis/osx_before_install.sh @@ -8,7 +8,7 @@ brew update brew install openjpeg jbig2dec libtiff # image libraries brew install qpdf brew install ghostscript -brew install python3 +brew upgrade python # Brew removed python3 and python now defaults to python3 brew install libxml2 libffi leptonica brew install unpaper # optional brew install tesseract