Skip to content

Commit

Permalink
aaa
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine committed Nov 30, 2024
1 parent a34252b commit f673d21
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -328,12 +328,24 @@ jobs:
- name: Install wheel inspection tools
run: |
python -m pip install --upgrade pip
pip install wheel twine check-wheel-contents
pip install --upgrade wheel twine check-wheel-contents build
- name: Verify wheels
run: |
echo "=== Checking wheel structure ==="
for wheel in dist/*.whl; do
echo "Inspecting $wheel"
python -m wheel unpack "$wheel" --dest /tmp/wheel-check
echo "Contents of .dist-info:"
ls -la /tmp/wheel-check/*/self_encryption*.dist-info/
echo "METADATA contents:"
cat /tmp/wheel-check/*/self_encryption*.dist-info/METADATA
rm -rf /tmp/wheel-check/*
done
echo "=== Checking wheels with twine ==="
twine check dist/*
python -m twine check dist/*
echo "=== Checking wheel contents ==="
check-wheel-contents dist/*.whl
Expand Down

0 comments on commit f673d21

Please sign in to comment.