mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
No wheel for python 3.13 #524
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @gut903826 on GitHub (Oct 9, 2024).
We upgraded to python 3.13 and there doesn't seem to have a wheel for it.
We got this error message:

As you can see on this page there is no file for python 3.13: https://pypi.org/project/Brotli/1.1.0/#files
@sn1f3rt commented on GitHub (Oct 18, 2024):
+1
@anthrotype commented on GitHub (Oct 18, 2024):
thanks for the reminder, I'm working on this right now at https://github.com/google/brotli-wheels
@anthrotype commented on GitHub (Oct 18, 2024):
Ok, the new wheels for python 3.13 should now have been uploaded to https://pypi.org/project/Brotli/1.1.0/#files
even though the CI for https://github.com/google/brotli-wheels/releases/tag/v1.1.0-py313 says it failed:
https://github.com/google/brotli-wheels/actions/runs/11403349952/job/31731456149
twine actually managed to upload all the wheels (skipping those that were already present for v1.1.0). It's only the source distribution tar.gz that made the whole command error. But that one didn't change.
Whenever a new upstream brotli release is made, the brotli-wheels repo can sync with that and build new wheels for all pythons, not just 3.13.
So I think this can be closed now.
@sn1f3rt commented on GitHub (Oct 18, 2024):
Thanks!
@mike667 commented on GitHub (Feb 28, 2025):
Not related. Since the wheel was built later, the fix for the missing wheel is here for users of Poetry and Python 3.13.
https://github.com/python-poetry/poetry/issues/10174#issuecomment-2652398895
@sn1f3rt commented on GitHub (Feb 28, 2025):
Unfortunately, poetry gave me nasty issues regarding caching, and it was getting too wild. I have since migrated all my projects to
uv, and it's generally much better.