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