Jonathon Belotti
Jonathon Belotti
Any ideas about how'd you want this supported, ideally? At the moment the plugin's dependency on `mypy` is kept separate from the application code's dependencies (specified in a `requirements.txt` somewhere)....
> we have a couple of in house plugin (the mypy config point directly to the .py file) so would be great if that can be supported as well Oh...
I've created what I think is a repro of your problem here: https://github.com/thundergolfer/bazel-python-mypy-protobuf I've also added you as a contributor in case you need to fix up any inaccuracies in...
👋 @kororobot, thanks for the report. I can reproduce this behaviour on my machine as well. There's some interaction between `--build_python_zip` and running `bazel test` on a `mypy_test` target. We've...
For now, a recommended mitigation is to not using `--build_python_zip` on the cmd line and instead just use it like this: ```python filegroup( name = "foo_zip", srcs= ["//bar:foo"], output_group =...
I think we should keep it open, as there's _some_ problem that's undiagnosed.
Hey, regarding `1.` that's certainly a big pain point with this implementation. I've only had initial success with generated python code that came from: ``` http_archive( name = "build_stack_rules_proto", urls...
I just ran the aspect with **`0.780`** and didn't get that error (things worked fine). Can you provide a minimal reproduction, or pointers towards likely sources of the problem? This...
Thanks for reproduction. I'll take a look.
This issue has been ameliorated a bit by #32. You can now pass through an interpreter like `python3.7` which means you specify the minor version. But there's still a problem...