Skip to content
Snippets Groups Projects
Unverified Commit f417621b authored by jlaura's avatar jlaura Committed by GitHub
Browse files

Update .travis.yml

parent 7d23cbc8
No related branches found
No related tags found
No related merge requests found
langage: python language: generic
sudo: false sudo: false
branches: branches:
...@@ -8,10 +8,11 @@ os: ...@@ -8,10 +8,11 @@ os:
- linux - linux
- osx - osx
python: env:
- "3.4" - PYTHON_VERSION = "3.4"
- "3.5" - PYTHON_VERSION = "3.5"
- "3.6" - PYTHON_VERSION = "3.6"
before_install: before_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.
...@@ -28,7 +29,7 @@ before_install: ...@@ -28,7 +29,7 @@ before_install:
# Useful for debugging any issues with conda # Useful for debugging any issues with conda
- conda info -a - conda info -a
# Create the env # Create the env
- conda create -q -n test python=$TRAVIS_PYTHON_VERSION - conda create -q -n test python=$PYTHON_VERSION
- source activate test - source activate test
install: install:
...@@ -48,7 +49,7 @@ after_success: ...@@ -48,7 +49,7 @@ after_success:
- coveralls - coveralls
- conda install conda-build anaconda-client - conda install conda-build anaconda-client
- conda config --set anaconda_upload yes - conda config --set anaconda_upload yes
- conda build --token $CONDA_UPLOAD_TOKEN --python $TRAVIS_PYTHON_VERSION recipe - conda build --token $CONDA_UPLOAD_TOKEN --python $PYTHON_VERSION recipe
notifications: notifications:
webhooks: webhooks:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment