Skip to content

Commit

Permalink
add Python 3.6 to travis matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
njwilson23 committed Mar 19, 2017
1 parent 17a11e7 commit 084462b
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,18 @@ python:
- "2.7"
- "3.4"
- "3.5"

addons:
apt:
packages:
- libproj-dev # otherwise gdal raises an error
- "3.6"

before_install:
- "wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh"
- "chmod +x miniconda.sh"
- "./miniconda.sh -b"
- "export PATH=/home/travis/miniconda2/bin:$PATH"
- "conda update --yes conda"
- "conda info -a"
- "conda info --all"

install:
- "conda create --yes -n test-env python=$TRAVIS_PYTHON_VERSION pip>=8.1 numpy>=1.10 cython>=0.25 pyproj>=1.9 gdal>=2.1 libgdal>=2.1 coverage>=4.2 shapely>=1.5"
- "conda create --yes --name test-env --channel conda-forge python=$TRAVIS_PYTHON_VERSION numpy cython gdal pyproj shapely coverage"
- "source activate test-env"
- "pip install -r requirements.txt"
- "pip install coveralls"
Expand Down

0 comments on commit 084462b

Please sign in to comment.