Skip to content

Commit 1e26c5d

Browse files
committed
Pinned pylint version
1 parent 9de011e commit 1e26c5d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build_wheels_macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
174174
- name: Pylint test
175175
run: |
176-
python -m pip install pylint
176+
python -m pip install pylint==2.12.2
177177
python -m pylint ${{ github.workspace }}/tests/pylint.py --extension-pkg-whitelist=cv2 --disable=missing-docstring
178178
179179
test_release_opencv_python:

.github/workflows/build_wheels_macos_m1.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
109109
- name: Pylint test
110110
run: |
111-
arch -arm64 python${{ matrix.python-version }} -m pip install pylint
111+
arch -arm64 python${{ matrix.python-version }} -m pip install pylint==2.12.2
112112
arch -arm64 python${{ matrix.python-version }} -m pylint ${{ github.workspace }}/tests/pylint.py --extension-pkg-whitelist=cv2 --disable=missing-docstring
113113
114114
test_release_opencv_python:

.github/workflows/build_wheels_windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132

133133
- name: Pylint test
134134
run: |
135-
python -m pip install pylint
135+
python -m pip install pylint==2.12.2
136136
python -m pylint ${{ github.workspace }}\tests\pylint.py --extension-pkg-whitelist=cv2 --disable=missing-docstring
137137
shell: cmd
138138

travis_config.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ function pylint_test {
168168

169169
echo "Starting Pylint tests..."
170170

171-
$PYTHON -m pip install pylint
171+
$PYTHON -m pip install pylint==2.12.2
172172
$PYTHON -m pylint /io/tests/pylint.py --extension-pkg-whitelist=cv2 --disable=missing-docstring
173173
}
174174

0 commit comments

Comments
 (0)