-
Notifications
You must be signed in to change notification settings - Fork 54
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
Prebuilt wheels for arm64 #341
Comments
unfortunately before there is a specified standard for arm wheels in manylinux I won't be providing potentially non-complaint wheels (I understand that pypi allows you to upload them, but there isn't proper auditwheel tooling for arm yet) you may be able to use piwheels though which builds specifically for your usecase: https://www.piwheels.org/simple/libsass/ |
also azure pipelines does not support anything but x86_64 at the moment |
Thanks for the help Anthony! |
I think people keep opening new bugs related to this one (as I did) because this one is closed and doesn't appear when searching for open bugs (why closing if not solved/implemented?). In any case, the two mentioned issues, @asottile, seem to be sorted out as of today:
What I'm not aware is... does Azure not provide ARM64 runners for opensource projects? Is it paid? How can we help to add the pipeline for ARM64 on your behalf? Thanks! |
FTR, another workaround is to install sass as a system package and set an env flag (SYSTEM_SASS=1) for libsass to use it. This worked for me:
|
I have made a wheel for 0.22.0 since it was taking too long to install it from source and I need it for use it in a Docker Alpine image with arch64 so it must be compatible with musl tags and target platform You could use it from: pip install libsass-wheel this one works for me: |
I also have go and build several more versions that are dependencies with other softwares that I deploy on different versions. If you need any other particular wheel around this just ping me |
Hello,
It would be awesome to have prebuilt binaries for arm64, compiling the wheel on old Raspberry Pis is a hassle.
I have no experience with Azure pipelines so I won't make a PR, but I think the solution is simply changing
architectures: [x64, x86]
toarchitectures: [x64, x86, arm64]
inazure-pipelines.yml
.Cheers
The text was updated successfully, but these errors were encountered: