diff options
-rw-r--r-- | .travis.yml | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index c68e816f..1841c4e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,24 +4,35 @@ # Tell Travis what to do # https://travis-ci.com/nedbat/coveragepy -dist: xenial +dist: bionic language: python cache: pip python: - '2.7' - - '3.5' - - '3.6' - - '3.7' - - '3.8' - - 'pypy2.7-6.0' - - 'pypy3.5-6.0' + #- '3.5' + #- '3.6' + #- '3.7' + #- '3.8' + #- 'pypy2.7-6.0' + #- 'pypy3.5-6.0' env: matrix: - COVERAGE_COVERAGE=no - COVERAGE_COVERAGE=yes +matrix: + include: + - env: TOXENV=py39 + addons: + apt: + sources: + - deadsnakes + packages: + - python3.9 + - python3-distutils + install: - pip install -r requirements/ci.pip - pip freeze |