1234567891011121314151617181920212223242526 |
- dist: trusty
- sudo: required
- language: python
- python:
- - "2.7"
- - "3.4"
- - "3.5"
- - "3.6"
- before_install:
- - sudo apt-get -qq update
- - sudo apt-get install -qq cmake python-numpy python-scipy libboost-python-dev
- - pip install git+https://github.com/ageitgey/face_recognition_models
- install:
- - pip install -r requirements.txt
- - pip install tox-travis
- script: tox
- # Temporary for Python 3.7
- matrix:
- include:
- - python: 3.7
- dist: xenial
- sudo: true
|