Invoke pylint with all Python versions >= 3.3

We used to say in the project description text that we need Python>=3.2,
but I just noted that we use print() flush parameter, which was
introduced with python 3.3. Pylint would have warned that our code would
fail with Python 3.2.
This commit is contained in:
Alexander Graf 2016-06-26 10:33:17 +02:00
parent 357cabab49
commit de2399a6c8

View File

@ -1,11 +1,10 @@
language: python
python:
# - "3.2"
# - "3.3"
# - "3.4"
- "3.3"
- "3.4"
- "3.5"
# - "3.5-dev"
# - "nightly"
- "3.5-dev"
- "nightly"
install:
- pip install pylint requests
script: