> Hello, I found a repro that fails with > > ``` > bazel test //:example_test --test_output=streamed > ``` > > and succeeds with > > ``` > RULES_PYTHON_ENABLE_PIPSTAR=0 bazel test //:example_test --test_output=streamed > ``` > > https://github.com/tbarrella/pipstar-repro _Originally posted by @tbarrella-figma in [#2949](https://github.com/bazel-contrib/rules_python/issues/2949#issuecomment-3874225716)_ The problematic lines: ``` "bytecode>=0.16.0; python_version >= \"3.13.0\"", "bytecode>=0.15.0; python_version ~= \"3.12.0\"", "bytecode>=0.14.0; python_version ~= \"3.11.0\"", "bytecode>=0.13.0; python_version < \"3.11\"", ``` This should obviously result in an unconditional `bytecode` dependency, but it is missing from `runfiles`.
Originally posted by @tbarrella-figma in #2949
The problematic lines:
This should obviously result in an unconditional
bytecodedependency, but it is missing fromrunfiles.