We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the root cause of this issue is that argparse raises a different exception on Python 3.9. this also break our test cases
git clone
poetry env use 3.9
poetry run cz c nocommand
$ poetry run cz nocommand usage: cz [-h] [--debug] [-n NAME] {init,commit,c,ls,example,info,schema,bump,changelog,ch,check,version} ... cz: error: argument {init,commit,c,ls,example,info,schema,bump,changelog,ch,check,version}: invalid choice: 'nocommand' (choose from 'init', 'commit', 'c', 'ls', 'example', 'info', 'schema', 'bump', 'changelog', 'ch', 'check', 'version')
warn "Command is required" at the end
poetry run cz nocommand usage: cz [-h] [--debug] [-n NAME] {init,commit,c,ls,example,info,schema,bump,changelog,ch,check,version} ... cz: error: argument {init,commit,c,ls,example,info,schema,bump,changelog,ch,check,version}: invalid choice: 'nocommand' (choose from 'init', 'commit', 'c', 'ls', 'example', 'info', 'schema', 'bump', 'changelog', 'ch', 'check', 'version') Command is required
The text was updated successfully, but these errors were encountered:
closed by #430
Sorry, something went wrong.
Lee-W
No branches or pull requests
Description
the root cause of this issue is that argparse raises a different exception on Python 3.9. this also break our test cases
Steps to reproduce
git clone
this projectpoetry env use 3.9
poetry run cz c nocommand
Current behavior
Desired behavior
warn "Command is required" at the end
Environment
The text was updated successfully, but these errors were encountered: