Codebase list pycollada / upstream/0.7.1 .travis.yml
upstream/0.7.1

Tree @upstream/0.7.1 (Download .tar.gz)

.travis.yml @upstream/0.7.1raw · history · blame

dist: xenial
language: python

branches:
  only:
  - master

env:
  - DEPS=""
  - DEPS="lxml"

python:
  - 2.7
  - 3.5
  - 3.6
  - 3.7
  - 3.8

install:
  - pip install numpy
  # only install deps if the $DEPS variable is not empty
  # -z returns true on empty string
  - if [[ ! -z "$DEPS" ]]; then pip install $DEPS; fi;
  - python setup.py install

script: python collada