SeldonIO / MLServer

An inference server for your machine learning models, including support for multiple frameworks, multi-model serving and more
https://mlserver.readthedocs.io/en/latest/
Apache License 2.0
726 stars 183 forks source link

Question - Toml restriction to fastapi patch version #1953

Closed sergioave closed 2 weeks ago

sergioave commented 2 weeks ago

Because the highest version of fastapi has been restricted to 115.2 and it is not allowed to upload at least the patch versions. Thank you

Real [tool.poetry.dependencies] python = ">=3.9,<3.12" click = "*" fastapi = ">=0.88.0,!=0.89.0,<=0.115.2" ...

Recommended [tool.poetry.dependencies] python = ">=3.9,<3.12" click = "*" fastapi = ">=0.88.0,!=0.89.0,<0.116.0" ...

sakoush commented 2 weeks ago

@sergioave thanks for raising this issue, would it be possible to do this change as a PR? We welcome contributions from the community. Thank you.