Henry Schreiner
Henry Schreiner
Did you modify the version number? That seems to be a problem with `wheel` computing the name from the version number.
Ugh, Conda's support of building packages with pip is terrible. Generally you should not use conda for development, but only deploy binaries via conda, and that with Conda-build, which sets...
Ping me if I forget about this, my M1 is upgrading to macOS 12.4 at the moment.
We should at least filter `CMAKE_INSTALL_PREFIX` from `CMAKE_ARGS`. `SKBUILD_CONFIGURE_ARGS` is quite explicitly only scikit-build, so it should never be set there, but `CMAKE_ARGS` is a condo-forge convention, so more likely...
https://github.com/scikit-build/scikit-build/blob/cc69610e8a0a8d791b70e3bda5fa549c6469f748/skbuild/setuptools_wrap.py#L521-L522 Does that not work?
`CMAKE_ARGS` already gets provided by conda-forge, so overwriting that would be a bad idea anyway - it's better to use something specific for your package (in case it's added to...
How did you generate the little tree above? Was it manual? 😎
I'm guessing this doesn't work with `package = find:`?
The ideal way to do this I think is to use `run_setup`, https://github.com/python/cpython/blob/2efe18bf277dd0f38a1d248ae6bdd30947c26880/Lib/distutils/core.py#L170 for example, which would leave the parsing to setuptools and then we could query the options from...