Skip to content
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

Request: Allow --output-file multiple times, only use right-most #3248

Open
AndydeCleyre opened this issue Apr 24, 2024 · 12 comments · May be fixed by #3259
Open

Request: Allow --output-file multiple times, only use right-most #3248

AndydeCleyre opened this issue Apr 24, 2024 · 12 comments · May be fixed by #3259
Labels
cli Related to the command line interface

Comments

@AndydeCleyre
Copy link

requirements.in:

requests
$ uv pip compile requirements.in -o reqs1.txt -o reqs2.txt
error: the argument '--output-file <OUTPUT_FILE>' cannot be used multiple times
$ uv --version
uv 0.1.37
$ uname
Linux

I'm requesting that instead, the above command write output to (only) reqs2.txt, the latest instance of -o/--output-file on the command line. This is useful when using shell aliases or functions to wrap uv, when you specify a "default" output file in the alias or function, while allowing any invocation to easily override that default by specifying the option again, on the command line.

That's how pip-tools behaves, and I make use of that behavior.

@zanieb
Copy link
Member

zanieb commented Apr 24, 2024

I think I'd find this behavior really confusing. What if we provided a UV_COMPILE_OUTPUT_FILE environment variable instead that you could override with the command line?

@zanieb
Copy link
Member

zanieb commented Apr 24, 2024

This would also be resolved by #3049 / #1511 I presume?

@AndydeCleyre
Copy link
Author

A file-based configuration or global configuration would not work for my case, which is functions that have their own defaults but are separate from any other ways the user wishes to use pip or uv.

With UV_COMPILE_OUTPUT_FILE, let me think: if uv is the backend being used I could add my own parsing of all the options, find and remove all output flags, use the last one to set UV_COMPILE_OUTPUT_FILE, and run my commands. It might be workable for my main case, but adds a lot of complication for the uv code path. Certainly not suitable for aliases.

FWIW, this is a very common convention (later options "win"), and is used not just by pip-tools but also pip itself. For example, the following command only uses the cache2 folder:

$ pip install --cache-dir="$PWD/cache1" requests --cache-dir="$PWD/cache2"

@zanieb
Copy link
Member

zanieb commented Apr 24, 2024

Certainly not suitable for aliases.

I think you'd just write a simple bash function instead of an alias that sets a default value for the variable before calling into uv?

FWIW, this is a very common convention (later options "win"), and is used not just by pip-tools but also pip itself. For example, the following command only uses the cache2 folder:

I think with something like --cache-dir it's much clearer that a single cache directory can be used whereas with --output-file I would be uncertain if multiple output files will be written.

@AndydeCleyre
Copy link
Author

FWIW here's maybe a more analogous option from pip:

$ pip install --dry-run --quiet --report=out1.json requests --report=out2.json

As expected, only out2.json is written.

@AndydeCleyre
Copy link
Author

Similarly, both busybox wget and GNU wget use the latest-provided options for output file.

@AndydeCleyre
Copy link
Author

I'll note that I am having similar troubles with e.g. --annotation-style, which I expected to work like it does in pip-tools (latest wins). I won't open a separate issue for that at this time, as it gets to the same larger question.

@hmc-cs-mdrissi
Copy link

hmc-cs-mdrissi commented Apr 25, 2024

I suspect part of this comes from argparse's design. Many python libraries use argparse/similar library. argparse's default behavior is last one wins with no awareness of meaning flag.

edit: Personally I like current duplicates are hard error over last one wins. My guess is it's commonness in python ecosystem is less that clis made choice individually, but argument handling libraries default choices made it common.

@AndydeCleyre
Copy link
Author

Yup, argparse does it. So does Click. So does go-flags. And bazel. Looks like rustc will be doing it (if I'm interpreting that correctly).

@charliermarsh
Copy link
Member

Is this the same? clap-rs/clap#4261

@AndydeCleyre
Copy link
Author

Yeah, looks like exactly that.

@charliermarsh
Copy link
Member

I think you can set this globally with something like https://docs.rs/clap/latest/clap/struct.Command.html#method.args_override_self.

@charliermarsh charliermarsh linked a pull request Apr 25, 2024 that will close this issue
@charliermarsh charliermarsh added the cli Related to the command line interface label Apr 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cli Related to the command line interface
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants