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
pixi run build-emscripten-wasm32-pkg recipes/recipes_emscripten/awkward-cpp
gives me a similar error:
File "$BUILD_PREFIX/venv/lib/python3.11/site-packages/scikit_build_core/builder/macos.py", line 30, in <genexpr>
│ │ major, minor = (int(d) for d in version.split(".")[:2])
│ │ ^^^^^^
│ │ ValueError: invalid literal for int() with base 10: ''
Is there a way to use scikit-build during the build?
The text was updated successfully, but these errors were encountered:
I would like to add the
rapidfuzz
package to emscripten-forge.One of the original build requirements is
scikit-build
:Using
pixi
to build the package locally, I get an error becausescikit-build
tries to infer the platform version - which in my case defaulted to macOS:I tried to check if other recipes are already using
scikit-build
. Indeed,awkward-cpp
is using it:But building it with
gives me a similar error:
Is there a way to use
scikit-build
during the build?The text was updated successfully, but these errors were encountered: