Skip to content

Commit f83c97a

Browse files
committed
GH Actions: install missing setuptools in the Pylint job
Fixes this Pylint error: ```console $ pylint $(git ls-files '*.py') ************* Module setup setup.py:1:0: E0401: Unable to import 'setuptools' (import-error) ```
1 parent cb8f6e8 commit f83c97a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install dependencies
5454
run: |
5555
python -m pip install --upgrade pip
56-
pip install pylint
56+
pip install pylint setuptools
5757
- name: Run Pylint
5858
run: |
5959
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)