Ignas Anikevicius
Ignas Anikevicius
Right now rules_python does not strictly support cross compilation and it seems that rules_pycross can use our toolchain for that. I wonder about how your cross compilation toolchain achieves that?...
Thanks for the explanation. I think your patch makes sense, would you like to submit a PR for it? On 1 February 2024 08:02:41 GMT+09:00, Andrei ***@***.***> wrote: >I think...
Ah, thank you for the context. I forgot about that PR, but now I remember. And sorry for confusion here, everybody. I guess then the solution to the problem would...
This is working as intended, you need to have a test executor that supports arm64 when executing the bazel test command, which may require an RBE setup. If you still...
I think it could be possible to tell bazel that your `py_test` should be always transition to the host platform and `@platforms//host` might help here. In general `py_test` is not...
One idea how to achieve a `py_host_test` would be to: ``` import native_test from skylib import transition_filegroup from aspect def py_host_test(name, **kwargs): py_binary(name + ".input", testonly=True, **kwargs) asects_transition_rule(name + ".transitioned",...
This is failing because it is trying to build a wheel as there are [no wheels available on PyPI](https://pypi.org/project/hnswlib/#files). The workaround for this would be to build a wheel for...
This is because when you don't set the attribute, it uses the system-wide python installation and it could be working because you may have all of the dependencies for building...
@dependabot recreate