Ignas Anikevicius
Ignas Anikevicius
I have a very simple project that works with `0.56` but not with `0.57.1` and I found the offending PR. * 5e904830 (#3148) - does not work and fails with...
WIP: stacked on #2987 This is adding `constraint_values` attribute to `pip.configure` and is threading it all the way down to the generation of `BUILD.bazel` file of for config settings used...
Stacked on #2988 With this PR we can support arbitrary target settings instead of just plain `constraint_values`. We still have custom logic to ensure that all of the tests pass....
Parse env markers in pip.parse using starlark Summary: - Allow switching to the Starlark implementation of the marker evaluation function. - Add a way for users to modify the `env`...
It was fixed in #3001 where this comment/idea was floated: https://github.com/bazel-contrib/rules_python/pull/3001#issuecomment-2981231509 The ideal way would be to ask users to use toolchain lookup instead but we need to ensure that...
Currently the API for defining different parameters by target platform is not ideal and we need to jump over hoops whilst trying to maintain it. The main difficulties are: *...
When adding #2969 I noticed that the `3.14.0b2` is failing the `//tests/toolchains/` when using the script bootstrap. It seems that the `sys.path` setup is not working and the bazel runfiles...
This is a task related to eventual cleanup of WORKSPACE support. This will happen when the minimum supported version is bazel 9, that is the first version that removes the...
Summary from https://github.com/bazel-contrib/rules_python/discussions/2564 ```starlark pip.parse( experimental_bazel_downloader = True, experimental_index_url_overrides = {"package": "https//baz.com/simple", ...}, requirements_lock = "requirements.txt", ... ``` If `requirements.txt` has: ``` --index_url https://foo/simple --extra-index-url https://bar/simple --extra-index-url https://foobar/simple package==1.2.3 \...
This is just a laundry list for the flag to be flipped by default and enable better dependency graph construction using the marker settings. - [X] Won't do: Add `expressions_any`...