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

Commits on Sep 24, 2024

  1. fix: Conflicting dependencies between ipython and 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.
    r-dh committed Sep 24, 2024
    Configuration menu
    Copy the full SHA
    c3dc4c9 View commit details
    Browse the repository at this point in the history