Peter Lobsinger
Peter Lobsinger
> Test failure is a true positive. It detected a case where cross builds still don't work: cross-compiling to Mac from Linux. The reason it does this is because the...
FYI, I believe https://github.com/aspect-build/rules_py/issues/587 may improve the situation with the runtime dependency on the `//py/tools/venv_bin:venv` tool. I'm not sure if that gets this feature all the way across the line...
This FR is not about doing the package management. I do not view package management as in-scope for `py_pex_binary`. I like that the archive builder relies on other parts of...
Here's a small, self-contained demo: https://github.com/plobsing/bazel_pex_cross_demo Its great to hear that the ecosystem is getting new and better options. However, last time I checked, Uv was unable to find a...
I also ran into this. I've found that patching [`py/private/py_pex_binary.bzl`](https://github.com/aspect-build/rules_py/blob/c29d3d8911136dab2d01469a99a53b7e6cfa2b20/py/private/py_pex_binary.bzl#L31) to also exclude my custom Python runtimes in the same way as the common `rules_python` ones silences the failure. My...