-
Good day! I am trying to adapt cibuildwheel workflow to my project and all wheels after the build come with My workflow is here if it would be helpful somehow. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The wheel name is up to the build backend. You are using cmeel, which seems to be a rather exotic CMake based backend that was designed (as far as I can tell) to ship binaries and not Python extensions. It intentionally installs things into folders you can't import in Python. I'd recommend trying scikit-build-core if you need a Python extension with CMake. |
Beta Was this translation helpful? Give feedback.
The wheel name is up to the build backend. You are using cmeel, which seems to be a rather exotic CMake based backend that was designed (as far as I can tell) to ship binaries and not Python extensions. It intentionally installs things into folders you can't import in Python. I'd recommend trying scikit-build-core if you need a Python extension with CMake.