Skip to content

Commit

Permalink
add some version info
Browse files Browse the repository at this point in the history
  • Loading branch information
fitnr committed Dec 1, 2017
1 parent e2cdace commit 0117c81
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ language: python

python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6

os:
- linux
Expand Down Expand Up @@ -43,15 +43,17 @@ cache:

before_install:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then sudo apt-get -qq install -y libgdal1-dev; fi
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then sudo apt-get -qq install -y libgdal1-dev gdal-bin; fi
- pip install docutils coverage python-coveralls
- if [[ $SIMPLIFY != "yes" ]]; then pip uninstall -y numpy visvalingamwyatt || :; fi

install:
- make
- python setup.py install
- if [[ $CLIP == "yes" ]]; then pip install -e .[clip]; fi
- if [[ $SIMPLIFY == "yes" ]]; then pip install -e .[simplify]; fi
- if [[ $CLIP == "yes" ]]; then pip install .[clip]; fi
- if [[ $SIMPLIFY == "yes" ]]; then pip install .[simplify]; fi

before_script: gdalinfo --version

script:
- make test QUIET=
Expand Down

0 comments on commit 0117c81

Please sign in to comment.