Skip to content

Commit f970d77

Browse files
Temporarily disable check_manifest on MinGW (#1935)
* Remove MinGW CI jobs Signed-off-by: Darby Johnston <[email protected]> * Comment out the MinGW job Signed-off-by: Darby Johnston <[email protected]> * Try just disabling the check-manifest and lint check Signed-off-by: Darby Johnston <[email protected]> * Add comment Signed-off-by: Darby Johnston <[email protected]> --------- Signed-off-by: Darby Johnston <[email protected]>
1 parent d3ca19d commit f970d77

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,11 @@ jobs:
140140
- name: Install python build dependencies
141141
run: |
142142
python -m pip install --upgrade pip setuptools wheel "flake8>=3.5" check-manifest
143+
# \todo Temporarily disable check-manifest on MinGW, it is failing
144+
# intermittently with this error:
145+
# ModuleNotFoundError: No module named 'pip._vendor.distlib'
143146
- name: Run check-manifest and lint check
147+
if: matrix.python-version != 'mingw64'
144148
run: make ci-prebuild
145149
- name: Build and Install
146150
run: |

0 commit comments

Comments
 (0)