-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: increase minimum Python version to 3.10 (#249)
* feat: add ipython to dev dependencies * feat: increase minimum Python version to 3.10
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4195186
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.
The addition of
ipython = ">=8.23.0"
conflicts with commitizen and prevents the Docker image to build successfully.commitizen
requiresquestionary (>=2.0,<3.0)
.questionary (2.0.0 and 2.0.1)
depend onprompt_toolkit (>=2.0,<=3.0.36)
.ipython (>=8.23.0)
depends onprompt_toolkit (>=3.0.41,<3.1.0)
.Conflict:
prompt_toolkit (>=3.0.41,<3.1.0)
required byipython (>=8.23.0)
is incompatible withprompt_toolkit (<=3.0.36)
required byquestionary
(and thuscommitizen
).I found that
ipython
version>=8.18.0
is compatible with commitizen.