Open copdips opened 3 months ago
with poetry, for example: typer = {extras = ["all"], version = "^0.7.0"} it forces the version range of typer from 0.7.0 to 0.8.0, which is very limited, it would be nice to change it to <=1.0.0, same thing for other deps in the pyproject.toml file
typer = {extras = ["all"], version = "^0.7.0"}
<=1.0.0
with poetry, for example:
typer = {extras = ["all"], version = "^0.7.0"}
it forces the version range of typer from 0.7.0 to 0.8.0, which is very limited, it would be nice to change it to<=1.0.0
, same thing for other deps in the pyproject.toml file