Skip to content

Commit 1113676

Browse files
committed
Build: Upgrade 'packaging' in addition to 'twine' for wheel validation.
1 parent 2c3e8fc commit 1113676

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,14 +247,14 @@ jobs:
247247

248248
- name: abi3audit wheels
249249
run: |
250-
python -m pip install abi3audit
250+
python -m pip install -U abi3audit
251251
ERRORS=0
252252
for wheel in ./dist_downloads/*abi3*.whl; do abi3audit --strict --report ${wheel} || ERRORS=$((ERRORS + 1)); done
253253
exit $ERRORS
254254
255255
- name: Twine-check wheels
256256
run: |
257-
python -m pip install twine
257+
python -m pip install -U twine packaging
258258
ERRORS=0
259259
for wheel in ./dist_downloads/*.whl; do twine check ${wheel} || ERRORS=$((ERRORS + 1)); done
260260
exit $ERRORS

0 commit comments

Comments
 (0)