superlinear-ai / poetry-cookiecutter

🍪 Poetry Cookiecutter is a modern Cookiecutter template for scaffolding Python packages and apps
GNU Affero General Public License v3.0
252 stars 37 forks source link

fix: conflicting dependencies between ipython and commitizen #252

Closed r-dh closed 1 month ago

r-dh commented 1 month ago

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

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.

lsorber commented 1 month ago

Thank you for the contribution @r-dh!