The PyPI listing for bcrypt 5.0.0 only provides wheels for free-threaded Python 3.13 (cp313-cp313t-manylinux2014_x86_64.whl), PyPy, and other architectures, but not for standard CPython 3.13 on Linux (cp313-cp313-manylinux2014_x86_64.whl).
This means that pip install in standard Python 3.13 environments falls back to building from source distribution, which is problematic for automated mirrors and environments relying on binary wheels.
Could you clarify if this is intentional, or if there are plans to publish cp313-cp313-manylinux2014_x86_64.whl for bcrypt to PyPI?
Environment:
CPython 3.13 (not free-threaded)
Amazon Linux 2023 x86_64
pip 24.2+
Steps to reproduce:
python3.13 -m pip install bcrypt
pip will source build (sdist) due to lack of a compatible prebuilt wheel.
See: https://pypi.org/project/bcrypt/5.0.0/#files
Thank you for your work!