-
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
Fix issue with not building from sdist #91
Conversation
To be clear, in mmh3 4.* this issue should not occur, as it was introduced in #79. The commit #79 removed [tool.setuptools]
include-package-data = true
# ...
[tool.setuptools.package-data]
mmh3 = ["*.h"] |
This PR fixes the issue reported in #90 that the package could not be built from the source distribution (
sdist
). It also adds tests to verify building from the source distribution, ensuring this issue does not recur.The PR also includes a few minor documentation fixes and enhancements.