We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pylint-crash-2023-11-16-14-50-53.txt
This is the pre-commit config:
Python version is 12.
The text was updated successfully, but these errors were encountered:
Can you provide the output of pylint --version? Python 3.12 is only supported with pylint 3.0 and astroid 3.0.
pylint --version
Sorry, something went wrong.
Duplicate of #9091
After removing pylint-pytest and upgrading pylint as foll0wing:
(venv12) ~/PycharmProjects/multimedia (yoram-production) $ pip show pylint Name: pylint Version: 3.0.2 Summary: python code static checker Home-page: Author: Author-email: Python Code Quality Authority code-quality@python.org License: GPL-2.0-or-later Location: /home/yorams/PycharmProjects/multimedia/venv12/lib/python3.12/site-packages Requires: astroid, dill, dill, isort, mccabe, platformdirs, tomlkit Required-by: (venv12) ~/PycharmProjects/multimedia (yoram-production) $ pip show astroid Name: astroid Version: 3.0.1 Summary: An abstract syntax tree for Python with inference support. Home-page: Author: Author-email: License: LGPL-2.1-or-later Location: /home/yorams/PycharmProjects/multimedia/venv12/lib/python3.12/site-packages Requires: Required-by: pylint (venv12) ~/PycharmProjects/multimedia (yoram-production) $
It seems to be working. Thanks.
No branches or pull requests
pylint-crash-2023-11-16-14-50-53.txt
This is the pre-commit config:
hooks:
name: pylint
entry: pylint
language: system
types: [python]
args: [
--max-line-length=127,
'--disable=logging-fstring-interpolation,logging-not-lazy,unspecified-encoding,logging-format-interpolation',
'--good-names=_,rc,ti,ip,l3',
'--load-plugins=pylint_pytest'
]
Python version is 12.
The text was updated successfully, but these errors were encountered: