From 56a90a45119ed5ab3cd7c99c68a109f5426828f6 Mon Sep 17 00:00:00 2001 From: Sherif Akoush Date: Tue, 12 Oct 2021 09:43:48 +0100 Subject: [PATCH] pin version of fastapi (#341) --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7ff83d14a..28ec0c750 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,9 @@ def _load_description() -> str: install_requires=[ "grpcio", "protobuf", - "fastapi", + # We pin version of fastapi + # check https://github.com/SeldonIO/MLServer/issues/340 + "fastapi==0.68.2", "uvicorn", "orjson", "click",