Skip to content
Snippets Groups Projects
Commit 92206933 authored by Jason R Laura's avatar Jason R Laura
Browse files

trying to get OSX to build

parent 2cc0e972
No related branches found
No related tags found
No related merge requests found
language: python
sudo: false sudo: false
branches: branches:
...@@ -11,6 +10,8 @@ env: ...@@ -11,6 +10,8 @@ env:
matrix: matrix:
- PYTHON_VERSION: 3.5 - PYTHON_VERSION: 3.5
os: os:
- linux - linux
- osx - osx
...@@ -21,13 +22,13 @@ install: ...@@ -21,13 +22,13 @@ install:
# We do this conditionally because it saves us some downloading if the # We do this conditionally because it saves us some downloading if the
# version is the same. # version is the same.
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then - 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; wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi fi
else 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; curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
else else
curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh; curl -o miniconda.sh https://repo.continuum.io/miniconda/Miniconda-latest-MacOSX-x86_64.sh;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment