bazel-contrib / bazel-contrib/rules_uv
fix: venv: support `tags` attribute
Open
Beginner friendly
- Dominant language
- Starlark
- Stars
- 29
- Forks
- 12
- PR merge metrics
- No merged PRs in 30d
Description
Currently
```starlark
create_venv(
name = "create_venv",
requirements_in = "//:pyproject.toml",
requirements_txt = "//:requirements_lock.txt"
tags = ["manual"]
)
```
Fails with
```sh
Error: create_venv() got unexpected keyword argument: tags
```
Contributor guide
Research direction
Start at the create_venv entry point and inspect how its arguments are accepted. Use the example with pyproject.toml, requirements_lock.txt, and tags=["manual"] as the reproduction; done means the call no longer raises an unexpected keyword argument error and the tag is accepted.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- build-system
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 62/100