1language: python 2sudo: false 3python: 4 - "3.7" 5 - "2.7" 6 - "3.8-dev" 7 - "pypy" 8 - "pypy3" 9 10# -- TEST-BALLON: Check if Python 3.6 is actually Python 3.5.1 or newer 11matrix: 12 allow_failures: 13 - python: "3.8-dev" 14 - python: "nightly" 15 16install: 17 - pip install -U -r py.requirements/ci.travis.txt 18 - python setup.py -q install 19script: 20 - pytest tests 21