GitHub Actions fails to build wheels #1637
-
I am hesitant to write an issue, because I think it might have something to do with GitHub Actions and environment variables (Paths?). The problem is that cibuildwheel reports several libraries missing, or maybe there are some header files missing?. Expand details to see relevant log excerpt:
My actions.yml file: https://github.com/DC-analysis/dclab/blob/426a38000eb87ff4759216d6d27e33603ddcd473/.github/workflows/deploy_pypi.yml Thanks for your help 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You are building NumPy. You don’t want to build NumPy. You might want to skip musllinux. Also, modern NumPy has a way to avoid the oldest supported NumPy (which might be why you are trying to build an old NumPy), so your python 3.9+ code can build with the latest NumPy and just target your actual minimum. |
Beta Was this translation helpful? Give feedback.
You are building NumPy. You don’t want to build NumPy. You might want to skip musllinux. Also, modern NumPy has a way to avoid the oldest supported NumPy (which might be why you are trying to build an old NumPy), so your python 3.9+ code can build with the latest NumPy and just target your actual minimum.