pydata / numexpr

Fast numerical array expression evaluator for Python, NumPy, Pandas, PyTables and more
https://numexpr.readthedocs.io/en/latest/user_guide.html
MIT License
2.21k stars 207 forks source link

Please upload a pure python wheel to PyPi #455

Closed drew-wks closed 11 months ago

drew-wks commented 11 months ago

I need it to use micropip to install the package. micropip will produce an error if it cannot find a pure Python wheel. To determine if a package has a pure Python wheel manually, you can open its PyPi page and go to the “Download files” tab. If this tab doesn’t contain a file *py3-none-any.whl then the pure Python wheel is missing.

gdementen commented 11 months ago

Well, numexpr contains C/compiled code, so AFAIK, it is not possible to provide pure python wheels.

FrancescAlted commented 11 months ago

That's correct, numexpr is not a pure Python package. Closing.