Currently, typer is pinned to <0.17.0,>=0.16.0, but I am using typer==0.19.2. This version mismatch causes dependency conflicts and makes it difficult to use the library alongside some other packages.
Would it be possible to either:
- Move
typer to an optional dependency (as it is only needed if you use the CLI tool), or
- Update the dependency to allow compatibility with the latest
typer versions?
Maybe moving the typer cli into an vibenet[cli] extra is an good solution here?
Currently,
typeris pinned to<0.17.0,>=0.16.0, but I am usingtyper==0.19.2. This version mismatch causes dependency conflicts and makes it difficult to use the library alongside some other packages.Would it be possible to either:
typerto an optional dependency (as it is only needed if you use the CLI tool), ortyperversions?Maybe moving the typer cli into an
vibenet[cli]extra is an good solution here?