Skip to content

Commit f0a774e

Browse files
committed
lint: Drop versions of Python no longer supported by pylint 4.0.0
There was a change in pylint 4.0.0 that changes how variable names are treated with regards to upper case versus regular snake case. At the same time, pylint 4.0.0 dropped support for versions of Python older than 3.10. In order to fix the warnings from 4.0.0, we need to drop versions of Python unsupported by 4.0.0 from the matrix, otherwise those versions would start warning because of the old variable name logic. Signed-off-by: Nathan Chancellor <[email protected]>
1 parent 2f17d5e commit f0a774e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: false
3434
matrix:
35-
version: ['3.11', '3.10', '3.9', '3.8']
35+
version: ['3.11', '3.10']
3636
uses: ClangBuiltLinux/actions-workflows/.github/workflows/python_lint.yml@main
3737
with:
3838
python_version: ${{ matrix.version }}

0 commit comments

Comments
 (0)