File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ jobs:
182
182
packages : >-
183
183
python${{ matrix.python }},
184
184
python${{ matrix.python }}-devel,
185
+ python${{ matrix.python }}-pip,
185
186
python${{ matrix.python }}-tox,
186
187
gcc-core,
187
188
git,
@@ -193,6 +194,11 @@ jobs:
193
194
run : |
194
195
python -c 'import platform; print("python-version=" + platform.python_version())' >> ${GITHUB_OUTPUT}
195
196
shell : C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
197
+ - name : Install missing dependencies
198
+ shell : C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
199
+ run : |
200
+ # Workaround for https://github.com/pypa/setuptools/issues/4831
201
+ python -m pip check | sed -rn 's/.*requires ([^,]+),.*/\1/p' | xargs python -m pip install
196
202
- name : Run tests
197
203
shell : C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 CHERE_INVOKING=1 C:\cygwin\bin\bash.exe -leo pipefail -o igncr {0}
198
204
run : |
You can’t perform that action at this time.
0 commit comments