Henry Schreiner
Henry Schreiner
This can be reopened, didn’t mean for “fix” to close! :)
I think that the BeeWare folks plans to help support this in cibuildwheel, I was told later this year at PyCon.
iOS merged. Now just Android left. ;)
Or, modern Python: `dog: module.Dog | None`. The problem with fixing/improving the type signatures to be properly MyPy compatible (which I'd love) is that that might increase the binary size...
CMake 4 and a few others things are taking my time at the moment, but I'm in favor. :)
Mostly updating things at the moment, like cmake-python-distributions and https://cliutils.gitlab.io/modern-cmake. You can work around any projects that are set too low with `-DCMAKE_POLICY_VERSION_MINIMUM=3.5` (and they've been producing warnings for a...
This was fixed by renaming run_always.
Couple of thoughts: I notice you are inheriting from the `python_flit_core` thing (not familiar with the system - recipe?). There's nothing related to flit here, so I'm guessing you might...
CMake strips RPaths that are outside the install tree. You probably need: ```cmake set(CMAKE_INSTALL_RPATH_USE_LINK_PATH ON) ``` That will leave the proper `$ORIGIN` rpaths and fix the issue above for macOS....