-
Notifications
You must be signed in to change notification settings - Fork 147
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
The prebuilt whl package of snowboy seems to have wrong name #257
Comments
Normally, the pure-Python packages have none-any suffix. @woshikie, you don't have snowboy on your laptop? What is its name? |
@hongquan , we do not have any |
@hongquan I have made some changes and it's compiling into correct names on my ubuntu @stealthanthrax we're trying to build |
@hongquan |
@woshikie You have full permission on Gemfury repo. Please upload the file. By the way, I'm looking for the better way to fix the setup.py script. Learning from other projects who also have Python modules built from Swig, they all use Example: |
I meant snowboy's setup.py script. |
Fixed by Kitt-AI/snowboy#493 |
Describe the bug
I built snowboy on my RPI 3 to wheel package and uploaded to https://repo.fury.io/fossasia/. The file is named snowboy-1.3.0-py3-none-any.whl, but I suspect that this name is wrong. This package contains some *.so binary, compiled from C/C++ code. That *.so file will be different between ARM and x86, so the name suffix of package cannot be none-any. It should be linux_armv7l.
With the suffix none-any, I worry that pip on PC will mistakenly download this file and install, while the file was built for ARM7.
What to do
Try to fix setup.py build script.
The text was updated successfully, but these errors were encountered: