de6e758be6
From https://docs.travis-ci.com/user/languages/python/#development-releases-support: > Recent Python branches require OpenSSL 1.0.2+. As this library is not > available for Trusty, 3.7, 3.7-dev, 3.8-dev, and nightly do not work (or > use outdated archive).
12 lines
142 B
YAML
12 lines
142 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "pypy"
|
|
- "pypy3"
|
|
|
|
script: python setup.py test
|