grantjenks / python-sortedcontainers

Python Sorted Container Types: Sorted List, Sorted Dict, and Sorted Set
http://www.grantjenks.com/docs/sortedcontainers/
Other
3.51k stars 203 forks source link

Pin pylint development dependency #200

Closed jakob-keller closed 2 years ago

jakob-keller commented 2 years ago

The pylint configuration kept in .pylintrc is incompatible with up-to-date releases of pylint. In particular, pylint 2.6 introduced breaking changes, such as removing the no-space-check option.

Consequently, when setting up a local clone of this repo and running python setup.py test, pylint fails with numerous warnings and errors.

As a work-around, this trivial PR pins pylint to the last supported version. The test suite successfully completes.

The pin may be relaxed as soon as the pylint configuration has been overhauled. This is out-of-scope for this PR.