We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a624b90 commit 039f788Copy full SHA for 039f788
1 file changed
.github/workflows/coding-style-check.yml
@@ -58,6 +58,7 @@ jobs:
58
steps:
59
- uses: actions/checkout@v6
60
- name: Install pylint
61
- run: pip install --user "pylint < 3.0"
+ # Keep pylint >= 3.0: pylint<3.0 can crash with Python 3.12 (astroid visit_typealias error).
62
+ run: pip install --user "pylint >= 3.0"
63
- name: Check Python files with pylint
64
run: find ./tools -name '*.py' -print -exec pylint {} +
0 commit comments