1sudo: false
2language: python
3python:
4  - "2.7"
5  - "3.3"
6  - "3.4"
7  - "3.5"
8  - "3.6"
9  - pypy
10  - pypy3
11matrix:
12  include:
13# Travis nightly look to be 3.5.0a4, b3 is out and the syntax error we see
14# doesn't happen in trunk.
15    - python: "nightly"
16      env: SKIP_DOCS=1
17install:
18 - pip install -U pip
19 - pip install -U wheel setuptools
20 - pip install -U .[docs,test]
21 - pip list
22 - python --version
23script:
24 - unit2
25 - if [ -z "$SKIP_DOCS" ]; then python setup.py build_sphinx; fi
26 - rst2html.py --strict README.rst README.html
27