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

fix: Conflicting dependencies between ipython and commitizen #252

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

r-dh
Copy link

@r-dh r-dh commented Sep 24, 2024

The earlier addition of ipython = ">=8.23.0" conflicts with commitizen and prevents the Docker image to build successfully.

  • commitizen requires questionary (>=2.0,<3.0).
  • questionary (2.0.0 and 2.0.1) depend on prompt_toolkit (>=2.0,<=3.0.36).
  • ipython (>=8.23.0) depends on prompt_toolkit (>=3.0.41,<3.1.0).

Conflict: prompt_toolkit (>=3.0.41,<3.1.0) required by ipython (>=8.23.0) is incompatible with prompt_toolkit (<=3.0.36) required by questionary (and thus commitizen).

I found that ipython version >=8.18.0 is compatible with commitizen.

The earlier addition of `ipython = ">=8.23.0"` conflicts with commitizen and prevents the Docker image to build successfully.

 - `commitizen` requires `questionary (>=2.0,<3.0)`.
 - `questionary (2.0.0 and 2.0.1)` depend on `prompt_toolkit (>=2.0,<=3.0.36)`.
  - `ipython (>=8.23.0)` depends on `prompt_toolkit (>=3.0.41,<3.1.0)`.

**Conflict:** `prompt_toolkit (>=3.0.41,<3.1.0)` required by `ipython (>=8.23.0)` is incompatible with `prompt_toolkit (<=3.0.36)` required by `questionary` (and thus `commitizen`).

I found that `ipython` version  `>=8.18.0` is compatible with commitizen.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant