Skip to content

Commit 039f788

Browse files
committed
ci: require pylint >= 3.0 on style check workflow
1 parent a624b90 commit 039f788

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/coding-style-check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@v6
6060
- name: Install pylint
61-
run: pip install --user "pylint < 3.0"
61+
# 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"
6263
- name: Check Python files with pylint
6364
run: find ./tools -name '*.py' -print -exec pylint {} +

0 commit comments

Comments
 (0)