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, to test a wheel, wheels are first installed with pip. On arm64 macOS github runner (macos-14), wheels are installed with arch -x86_64 pip install .... This results in ERROR: xxx_universal2.whl is not a supported wheel on this platform..
On my local M1 macmini, I am able to recreate the issue by:
If I rename the problematic wheel name to -macosx_10_9_universal2.whl, the problem does not occur. This does not make sense as we are testing on macos-14, which is much newer than macos 10.9 or 11.0.
This problem does not occur for universal2 python versions (i.e. python >3.8).
(.zip was added to the end of whl file name end so that github allow me to upload it. Just remove .zip extension from the file name after downloading.)
Description
Currently, to test a wheel, wheels are first installed with pip. On arm64 macOS github runner (
macos-14), wheels are installed witharch -x86_64 pip install .... This results inERROR: xxx_universal2.whl is not a supported wheel on this platform..On my local M1 macmini, I am able to recreate the issue by:
python3.8 -m pip install apngasm_python-1.2.3-cp311-cp311-macosx_11_0_universal2.whl.If I rename the problematic wheel name to
-macosx_10_9_universal2.whl, the problem does not occur. This does not make sense as we are testing on macos-14, which is much newer than macos10.9or11.0.This problem does not occur for universal2 python versions (i.e. python >3.8).
Relevant issue: #1746
You can download sample universal2 wheels from artifact of this run (https://github.com/laggykiller/apngasm-python/actions/runs/8063189658), or directly down here:
apngasm_python-1.3.0-cp38-cp38-macosx_11_0_universal2.whl.zip
apngasm_python-1.3.0-cp39-cp39-macosx_11_0_universal2.whl.zip
apngasm_python-1.3.0-cp310-cp310-macosx_11_0_universal2.whl.zip
apngasm_python-1.3.0-cp311-cp311-macosx_11_0_universal2.whl.zip
apngasm_python-1.3.0-cp312-abi3-macosx_11_0_universal2.whl.zip
(
.zipwas added to the end of whl file name end so that github allow me to upload it. Just remove.zipextension from the file name after downloading.)Build log
https://github.com/laggykiller/apngasm-python/actions/runs/8061744757/job/22020065912#step:4:1347
EDIT: I have tried with cibuildwheel master branch, and the problem still exists: https://github.com/laggykiller/apngasm-python/actions/runs/8074988563/job/22061164760#step:4:1419
CI config
https://github.com/laggykiller/apngasm-python/blob/c046caa64b633fe1cc957f67fd4fbc0f6abd7b40/.github/workflows/build.yml