diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1a9ed01..d81620a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -56,6 +56,7 @@ jobs: python-version: "3.12" - run: sudo make debian - run: pip install uv && uv build --wheel + - run: pip install auditwheel && auditwheel repair dist/*.whl --plat manylinux_2_17_$(uname -m) --exclude libfdb_c.so -w dist/ && rm dist/*linux_$(uname -m).whl - uses: actions/upload-artifact@v4 with: name: wheel-linux-${{ matrix.arch }} diff --git a/README.md b/README.md index c36cdea..6412a56 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,13 @@ asyncio.run(readme()) ## ChangeLog +### v0.13.2 + +#### CI + +- Fix PyPI release: run `auditwheel repair` after building Linux wheels to produce + `manylinux_2_17_*` platform tags instead of the rejected plain `linux_*` tags + ### v0.13.1 #### CI