Switch off prospector, go back to plain pylint (#1230)
* Switch off prospector, go back to plain pylint. prospector wasn't working on CI for some reason. Fix the outstanding pylint errors. * Explicitly request pylint 2 on Python 3 * Also need to update astroid. * pylint warning generated on Travis (case-sensitive filesystem.)
Showing
... | ... | @@ -9,9 +9,11 @@ Cython >= 0.28.1 |
# Python 3.7b1 requires this. | ||
greenlet>=0.4.13 ; platform_python_implementation == "CPython" | ||
pylint>=1.8.0 | ||
# pyyaml is included here and doesn't install on travis with 3.7a3 | ||
prospector[with_pyroma] ; python_version < '3.7' | ||
pylint>=1.8.0 ; python_version < "3.4" | ||
pylint >= 2.0.0.dev1 ; python_version >= "3.4" | ||
# pylint 2 needs astroid 2; unfortunately, it uses `typed_ast` | ||
# which has a C extension that doesn't build on PyPy | ||
astroid >= 2.0.0.dev1 ; python_version >= "3.4" and platform_python_implementation == "CPython" | ||
# See version requirements in setup.py | ||
cffi >= 1.11.5 ; platform_python_implementation == "CPython" | ||
... | ... |
Please register or sign in to comment