Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down