fastapi-code-generator
fastapi-code-generator copied to clipboard
Fix a versioning issue with click
typer is asking for click >= 8.0.0, but it seems that the latest in the 8.0 series (8.3.something) is incompatible and causes this error: https://github.com/koxudaxi/fastapi-code-generator/issues/495
This change adds click==8.1.7 (the same as in poetry.lock) to pyproject.toml as a workaround. I assume the real fix is to update to a newer version of typer.