We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ed6d3 commit 37d10ecCopy full SHA for 37d10ec
.github/workflows/tests.yml
@@ -30,7 +30,9 @@ jobs:
30
python -m pip install --upgrade pip
31
pip install pylint pytest
32
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33
- if [ ${{ matrix.python-version }} >= "3.12" ]; then pip install setuptools; fi
+ - name: Install setuptools for Python ≥ 3.12
34
+ if: matrix.python-version >= '3.12'
35
+ run: pip install setuptools
36
- name: Analysing the code with pylint
37
run: |
38
pylint $(git ls-files '*.py')
0 commit comments