1 parent 2c3e8fc commit 1113676Copy full SHA for 1113676
1 file changed
.github/workflows/wheels.yml
@@ -247,14 +247,14 @@ jobs:
247
248
- name: abi3audit wheels
249
run: |
250
- python -m pip install abi3audit
+ python -m pip install -U abi3audit
251
ERRORS=0
252
for wheel in ./dist_downloads/*abi3*.whl; do abi3audit --strict --report ${wheel} || ERRORS=$((ERRORS + 1)); done
253
exit $ERRORS
254
255
- name: Twine-check wheels
256
257
- python -m pip install twine
+ python -m pip install -U twine packaging
258
259
for wheel in ./dist_downloads/*.whl; do twine check ${wheel} || ERRORS=$((ERRORS + 1)); done
260
0 commit comments