Codebase list pycollada / 4e3d0537-d323-4b68-86f5-a7663291ef08/main .travis.yml
4e3d0537-d323-4b68-86f5-a7663291ef08/main

Tree @4e3d0537-d323-4b68-86f5-a7663291ef08/main (Download .tar.gz)

.travis.yml @4e3d0537-d323-4b68-86f5-a7663291ef08/mainraw · 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