-
Notifications
You must be signed in to change notification settings - Fork 29
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
Options must be specified before verify subcommand #83
Comments
Hi Éric, thanks for the feedback. I'm glad that pip-compile-multi provides a value to your projects. |
I haven’t used click but could look into this in a couple weeks! |
Hi @merwok, don't mean to push, but maybe you just forgot ;-) |
I have been busy and don’t think I will be able to work on this in the short term. |
Fixed in 1.5.3 |
Great to hear! Sorry you had a packaging issue. I think the proper fix would be to amend setup.py to have |
Thanks for the suggestion, I simplified MANIFEST and fixed setup.py. |
Hello and thanks for publishing this tool!
My projects tend to have four or five requirements files using the
.in/.txt
convention in adeps
directory. pip-tools lacks a mode to convert many files at once (jazzband/pip-tools#532) and has no config file for options (jazzband/pip-tools#604), so I have been using a wrapper script that is not very satisfying.pip-compile-multi -d deps --no-upgrades
works well to convert my files.(The fact that upgrade is true by default is another issue! Most of the time I added an item to the
.in
file and want to generate the lock file without changing what’s already there.)pip-compile-multi verify -d deps
does not work!pip-compile-multi -d deps verify
works.The documentation could include a working example of verify + options; it could also say that the options must come before the subcommand; the error message could be better.
The text was updated successfully, but these errors were encountered: