From f36195bcf3c59f0f9ee5b4e0053f223bc6458baa Mon Sep 17 00:00:00 2001 From: jlaura <jlaura@asu.edu> Date: Mon, 4 Dec 2017 21:01:05 -0700 Subject: [PATCH] Update .travis.yml --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5a6ca8c..be35878 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,9 @@ os: - osx env: - - PYTHON_VERSION = "3.4" - - PYTHON_VERSION = "3.5" - - PYTHON_VERSION = "3.6" + - PYTHON_VERSION=3.4 + - PYTHON_VERSION=3.5 + - PYTHON_VERSION=3.6 before_install: # We do this conditionally because it saves us some downloading if the @@ -29,7 +29,7 @@ before_install: # Useful for debugging any issues with conda - conda info -a # Create the env - - conda create -q -n test python="$PYTHON_VERSION" + - conda create -q -n test python $PYTHON_VERSION - source activate test install: @@ -49,7 +49,7 @@ after_success: - coveralls - conda install conda-build anaconda-client - conda config --set anaconda_upload yes - - conda build --token $CONDA_UPLOAD_TOKEN --python "$PYTHON_VERSION" recipe + - conda build --token $CONDA_UPLOAD_TOKEN --python $PYTHON_VERSION recipe notifications: webhooks: -- GitLab