-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python 3.10 support? #32
Comments
I am running into the same issue when installing on Python 3.10 |
py310 wheels would fix this: #35 |
If performance is not an issue, you can use pymmh3. It doesn't require compiling any of C++ code and is fully compatible with Python 3.10. You can use them both at the same time. try:
import mmh3
except ImportError:
import pymmh3 as mmh3
print(int.to_bytes(mmh3.hash("string test"), 4, byteorder="little", signed=True)) |
Excuse me for the delay. Version 3.1.0, which provides Python 3.10 and 3.11 wheels, is now released. Please try the new version. |
Hi, would it be possible to add wheels or build support for Python 3.10? I ran into this problem when trying to build from source:
The text was updated successfully, but these errors were encountered: