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
Commitizen currently requires argcomplete ^1.12.1, which officially supports Python 3.5-3.9.
argcomplete 2.0 is available, which adds support for Python 3.10 and drops support for Python 3.5 (see CHANGES).
To allow for use of argcomplete 2.0.x in commitizen enabled projects, its dependency specification needs to be relaxed.
Modify pyproject.toml:
Old:
argcomplete = "^1.12.1"
New
argcomplete = ">=1.12.1,<2.1"
I will prepare a trivial PR.
No response
The text was updated successfully, but these errors were encountered:
Can we add the support for argcomplete 3.0+?
argcomplete 3.0+
Sorry, something went wrong.
#702 should adress this
Thanks @jakob-keller , can confirm it is fixed now 👍
Successfully merging a pull request may close this issue.
Description
Commitizen currently requires argcomplete ^1.12.1, which officially supports Python 3.5-3.9.
argcomplete 2.0 is available, which adds support for Python 3.10 and drops support for Python 3.5 (see CHANGES).
To allow for use of argcomplete 2.0.x in commitizen enabled projects, its dependency specification needs to be relaxed.
Possible Solution
Modify pyproject.toml:
Old:
New
I will prepare a trivial PR.
Additional context
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: