.travis.yml 395 B

1234567891011121314151617181920212223
  1. language: python
  2. python:
  3. - "2.7"
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. #- "nightly"
  8. matrix:
  9. include:
  10. - python: 3.7 # https://github.com/travis-ci/travis-ci/issues/9815
  11. dist: xenial
  12. sudo: true
  13. allow_failures:
  14. - python: nightly
  15. branches:
  16. except:
  17. - python3
  18. install:
  19. - pip install typing pylint pycryptodome ecdsa idna
  20. script:
  21. - make typecheck
  22. - make lint
  23. - make test