You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, in setup.py, you still use make to build the .so file for Python extension. The problem with that approach is that, it generates wheel package with wrong filename, make pip not able to pick the right file for the platform. So I plan to rewrite the build script, using distutils.core.Extension. What do you think?
The text was updated successfully, but these errors were encountered:
Currently, in setup.py, you still use
make
to build the .so file for Python extension. The problem with that approach is that, it generates wheel package with wrong filename, makepip
not able to pick the right file for the platform. So I plan to rewrite the build script, usingdistutils.core.Extension
. What do you think?The text was updated successfully, but these errors were encountered: