From 7add76a09050adab5f0ed0030593043fa166800a Mon Sep 17 00:00:00 2001 From: Guillaume Tucker Date: Wed, 19 Jul 2023 15:15:35 +0200 Subject: [PATCH] docker/api: pin PyYAML version to 5.3.1 The version of PyYAML was not being specified and newer releases rely on more recent dependencies which cascade into basically updating FastAPI and some parts of the code accordingly. While doing this would make sense to keep the API codebase up-to-date, pin down the PyYAML version to 5.3.1 for now in requirements.txt so we avoid the whole issue in the short term. Signed-off-by: Guillaume Tucker --- docker/api/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/api/requirements.txt b/docker/api/requirements.txt index cce0721f..5ff9a01b 100644 --- a/docker/api/requirements.txt +++ b/docker/api/requirements.txt @@ -8,4 +8,5 @@ python-jose[cryptography]==3.3.0 uvicorn[standard]==0.13.4 motor==2.5.1 pymongo-migrate==0.11.0 +pyyaml==5.3.1 fastapi-versioning==0.10.0