Can use gino-starlette with fresh FastAPI version (which depends on fresh starlette)
Actual Behavior
Dependency resolving fails
for "^0.19" the caret means that only 0.19.x patch versions are considered valid. This is different from "^1.2" where any 1.x version including and above 1.2 would be valid.
Expected Behavior
Can use gino-starlette with fresh FastAPI version (which depends on fresh starlette)
Actual Behavior
Dependency resolving fails
for "^0.19" the caret means that only 0.19.x patch versions are considered valid. This is different from "^1.2" where any 1.x version including and above 1.2 would be valid.
Steps to Reproduce the Problem
to fix
Change https://github.com/python-gino/gino-starlette/blob/master/pyproject.toml#L26 to:
While at it I would also change https://github.com/python-gino/gino-starlette/blob/master/pyproject.toml#L27 to:
so when 1.1 is released gino-starlette does not fail dependency resolution.