540fceb795
The "bytes % bytes" syntax only appeared on py3.5, so don't use it. Updated travis to expect py3.4 works. The twisted side is probably even more broken for py3.4 than it is for py3.5.
18 lines
241 B
YAML
18 lines
241 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
matrix:
|
|
allow_failures:
|
|
- python: "3.3"
|
|
fast_finish: true
|
|
install:
|
|
- pip install . Twisted pyflakes
|
|
script:
|
|
- pyflakes src
|
|
- trial wormhole
|