From 9220693350d0aa94ec2df7deddd051c98e950a3d Mon Sep 17 00:00:00 2001 From: Jason R Laura <jlaura@igswzawglt-mjay.local> Date: Wed, 8 Jun 2016 21:50:35 -0700 Subject: [PATCH] trying to get OSX to build --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f94cb55..9a73d6d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,3 @@ -language: python sudo: false branches: @@ -11,6 +10,8 @@ env: matrix: - PYTHON_VERSION: 3.5 + + os: - linux - osx @@ -21,13 +22,13 @@ install: # We do this conditionally because it saves us some downloading if the # version is the same. - if [ "$TRAVIS_OS_NAME" == "linux" ]; then - if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then + if [ "$PYTHON_VERSION" == "2.7" ]; then wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi else - if ["$TRAVIS_PYTHON_VERSION" == "3.5"]; then + if ["$PYTHON_VERSION" == "3.5"]; then curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh; else curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh; -- GitLab