Skip to content

Commit e8ed6d3

Browse files
committed
install setuptools for all python version >=3.12
1 parent dcbf989 commit e8ed6d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python -m pip install --upgrade pip
3131
pip install pylint pytest
3232
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33-
if [ ${{ matrix.python-version }} == "3.12" ]; then pip install setuptools; fi
33+
if [ ${{ matrix.python-version }} >= "3.12" ]; then pip install setuptools; fi
3434
- name: Analysing the code with pylint
3535
run: |
3636
pylint $(git ls-files '*.py')

0 commit comments

Comments
 (0)