Elvis M. Wianda
Elvis M. Wianda
I tried the image, but the throughput was still the same 🤷
I see same error with `full_finetuning = False`
@rickeylev @aignas PTAL, and please advise how this can be probably tested.
> Ideally we would like to move to a direction that would allow different test runners to be used in the `py_test` rule and them being able to override the...
Let me try to recapitulate @aignas Your suggestion will make it possible to use different runners (pytest, unnittes, green, coverage-py) to run test since we can configure a corresponding executable....
The approach discussed sugested in https://github.com/bazelbuild/rules_python/pull/2224#issuecomment-2357318988 is implemented in https://github.com/bazelbuild/rules_python/pull/2246
From the stack trace it doesn't look like a gazelle problem. The error seems to come from poetry resolver. Can you run `bazel build @pip//:ipython` to validate that it is...
> I was reading some Python docs (venv or site, i can't remember), and they gave me the following idea: > > * A binary creates a wrapper for the...
Okay I tried the following approach and it seems to work Create `sitecustomize.py` under `$(bazel info output_base)/external/rules_python~~python~python_3_11_6_x86_64-unknown-linux-gnu/lib/python3.11/site-packages/` *sitecustomize.py* ```python import os import sys def find_site_packages_dirs(root_dir): # Store all paths with...