Bump pylint to v3.3.2 to Improve Python 3.13 Support (#4590)

This commit is contained in:
Luis Pérez 2024-12-04 15:54:03 -04:00 committed by GitHub
parent da93fe94ae
commit 3709c2fa93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

View file

@ -29,7 +29,7 @@ repos:
hooks: hooks:
- id: flake8 - id: flake8
- repo: https://github.com/PyCQA/pylint - repo: https://github.com/PyCQA/pylint
rev: v3.2.4 rev: v3.3.2
hooks: hooks:
- id: pylint - id: pylint
files: ^(?!(tests|docs)).*\.py$ files: ^(?!(tests|docs)).*\.py$

View file

@ -81,6 +81,7 @@ The following wonderful people contributed directly or indirectly to this projec
- `LRezende <https://github.com/lrezende>`_ - `LRezende <https://github.com/lrezende>`_
- `Luca Bellanti <https://github.com/Trifase>`_ - `Luca Bellanti <https://github.com/Trifase>`_
- `Lucas Molinari <https://github.com/lucasmolinari>`_ - `Lucas Molinari <https://github.com/lucasmolinari>`_
- `Luis Pérez <https://github.com/nemacysts>`_
- `macrojames <https://github.com/macrojames>`_ - `macrojames <https://github.com/macrojames>`_
- `Matheus Lemos <https://github.com/mlemosf>`_ - `Matheus Lemos <https://github.com/mlemosf>`_
- `Michael Dix <https://github.com/Eisberge>`_ - `Michael Dix <https://github.com/Eisberge>`_

View file

@ -149,7 +149,8 @@ enable = ["useless-suppression"]
disable = ["duplicate-code", "too-many-arguments", "too-many-public-methods", disable = ["duplicate-code", "too-many-arguments", "too-many-public-methods",
"too-few-public-methods", "broad-exception-caught", "too-many-instance-attributes", "too-few-public-methods", "broad-exception-caught", "too-many-instance-attributes",
"fixme", "missing-function-docstring", "missing-class-docstring", "too-many-locals", "fixme", "missing-function-docstring", "missing-class-docstring", "too-many-locals",
"too-many-lines", "too-many-branches", "too-many-statements", "cyclic-import" "too-many-lines", "too-many-branches", "too-many-statements", "cyclic-import",
"too-many-positional-arguments",
] ]
[tool.pylint.main] [tool.pylint.main]