1
0

.travis.yml 472 B

1234567891011121314151617181920212223242526
  1. dist: trusty
  2. sudo: required
  3. language: python
  4. python:
  5. - "2.7"
  6. - "3.4"
  7. - "3.5"
  8. - "3.6"
  9. before_install:
  10. - sudo apt-get -qq update
  11. - sudo apt-get install -qq cmake python-numpy python-scipy libboost-python-dev
  12. - pip install git+https://github.com/ageitgey/face_recognition_models
  13. install:
  14. - pip install -r requirements.txt
  15. - pip install tox-travis
  16. script: tox
  17. # Temporary for Python 3.7
  18. matrix:
  19. include:
  20. - python: 3.7
  21. dist: xenial
  22. sudo: true