bodono / scs-python

Python interface for SCS
MIT License
41 stars 33 forks source link

No wheels for Linux aarch64 (ARM) #111

Open dan-blanchard opened 2 months ago

dan-blanchard commented 2 months ago

I have noticed that when I try to install scs-python on a Linux ARM (aarch64) machine, there are no wheels for it on PyPI.

I looked into it briefly, and it appears if you follow the instructions here you should be able to pretty easily add those to your build matrix.

bodono commented 2 months ago

On pypi I see arm64 wheels: https://pypi.org/project/scs/#files

Are they not working? Or are you saying that the problem is they are for mac-os rather than linux?

dan-blanchard commented 2 months ago

Yeah, those are just for macOS. Linux ARM ones are called aarch64, and have to be built via emulation like in the docs I linked.

For example, if you look at the available scipy wheels, you'll see files that end with manylinux2014_aarch64.whl

image