Ignas Anikevicius

Results 504 comments of Ignas Anikevicius

To disable the test you can pass `tags = ["manual"]` and the test would not run unless run explicitly.

If proxy requires authentication you may need `keyring` addition like discussed in #1578. Is that the case here?

Closing this as I think it is not a bug in `rules_python`. Please comment here/re-open if there is no way to configure in this case.

Given that colorama should be only included on Windows and you run this error on non Windows, I suspect that you are trying to cross-compile, or you are trying to...

After a little bit of thinking I think the problem is that supporting cross-platform requirements would be something that detracts us from supporting other up and coming or existing cross-platform...

If I understand correctly, poetry in its lock file has dependency that is only installed on a particular platform. In order to have a single version of the dependency you...

What I meant was that poetry, pdm and other tools usually lock the dependencies and each platform has certain constraints on the packages they include. I do not mean modifying...

We do support the PEP508 in the context of `METADATA` parsing to ensure that the right dependencies are pulled in, but we don't support that in the context of `requirements.txt`...

From the first glance I am not sure how this is gazelle plugin's problem. What kind of toolchains do you have cotfigured to build gazelle? I don't see anything about...

I think this is because we include a `.zip` file with the interpreter and the python code that parses the python files. The code in question is here: https://github.com/bazelbuild/rules_python/blob/4be00a69ae3a0c4e7ef3a5f952254bacd16d0a2a/gazelle/python/BUILD.bazel#L70 @alexeagle...