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:
parent
357cabab49
commit
de2399a6c8
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user