Keith Smiley
Keith Smiley
On macOS if you have a hermetic sysroot this variable overrides CMAKE_SYSROOT and cmake instead just searches for Xcode
# 🐞 bug report ### Affected Rule `pip.parse` ### Is this a regression? I doubt it ### Description ```bzl experimental_index_url = "https://pypi.org/simple", experimental_index_url_overrides = { "torchvision": "https://404.com", "torchaudio": "https://404.com", },...
# 🐞 bug report ### Affected Rule pip.parse ### Is this a regression? No ### Description Through various issues it has been recommended that I use `experimental_index_url` to get improved...
Signed-off-by: Keith Smiley
In primarily C++ codebases, it's possible you have global `--copt`s that are incompatible with specific wheels that are built from their sdists. In this case you can likely set the...
With this code: ```bzl def foo(): found = False for i in range(10): if found: break if i == 5: found = True return "" ``` You see this warning...
If you run `amd-smi static --json` and attempt to parse the output, but it produces this warning, you don't get valid json. Instead this warning should go to stderr.
### Description of the bug: Testing a new commit of bazel it seems that every build results in: ``` ERROR: /.../BUILD.bazel:38:10: Testing //...test failed: Lost inputs no longer available remotely:...
This module is analogous to `json` but for TOML. It supports `toml.decode` and `toml.encode`. This is useful for the increasing number of places where toml is used over json /...