-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Add --all-groups
to uv pip install
and uv pip sync
#14789
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
ecd66d4
to
a5b3839
Compare
a5b3839
to
4526e58
Compare
#[arg(long, overrides_with("all_groups"), hide = true)] | ||
pub no_all_groups: bool, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, we don't have this anywhere else right now.
.arg("-r").arg("pyproject.toml") | ||
.arg("--all-groups"), @r" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems misleading, the -r
shouldn't be needed there, right?
.arg("-r") | ||
.arg("pylock.toml") | ||
.arg("--all-groups"), @r" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gosh, I was not aware we added -r pylock.toml --group
support. That's sort of concerning, since it doesn't match the existing --group
semantics (i.e., not applying to other input files)
Summary
--all-groups
doesn't accept a path; instead, it assumes thepyproject.toml
in the root.Closes #14483.