Skip to content

Commit f43d8bc

Browse files
authored
Add setuptools installation step to pylint workflow
setuptools was dropped from standard python 3.12
1 parent c2264c4 commit f43d8bc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/pylint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
python -m pip install --upgrade pip
2020
pip install .[dev]
2121
pip install pylint
22+
- name: Install setuptools
23+
run: python -m pip install setuptools
2224
- name: Analysing the code with pylint
2325
run: |
2426
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)