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
Thanks for the great library! Would it be possible to add wheels for the aarch64 platform in future releases? I'm not 100% sure how difficult this would be, but it seems cibuildwheel does support the architecture.
The use case is that this will allow you to easily leverage the library on the new(ish) AWS Lambda Graviton2 architecture arm64. At the moment you have to jump through a few hoops to ensure you build the library for the proper platform.
Workaround
The current way to tackle this is to leverage AWS SAM cli using sam build --use-container. To build it properly from an AWS Lambda Layer you have to specify both the compatible architecture and the BuildArchitecture:
I had a look at the runners GitHub provides but unfortunately they are currently only on x86. The only option would be then to use a sef-hosted runner or wait for github.com to offer arm64/aarch64 runners in the future.
You can close the issue or leave it for future reference if preferred.
Hi,
Thanks for the great library! Would it be possible to add wheels for the aarch64 platform in future releases? I'm not 100% sure how difficult this would be, but it seems cibuildwheel does support the architecture.
The use case is that this will allow you to easily leverage the library on the new(ish) AWS Lambda Graviton2 architecture arm64. At the moment you have to jump through a few hoops to ensure you build the library for the proper platform.
Workaround
The current way to tackle this is to leverage AWS SAM cli using
sam build --use-container
. To build it properly from an AWS Lambda Layer you have to specify both the compatible architecture and the BuildArchitecture:Also check this stackoverflow issue.
The text was updated successfully, but these errors were encountered: