From c2662211655edc4eb12b51d0f4a029bfdaf2251e Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 31 Jan 2022 11:07:52 +0200 Subject: [PATCH] fix(shared): pin loguru version Pinned to 0.5.3 until https://github.com/Delgan/loguru/issues/581 is fixed --- shared/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shared/setup.py b/shared/setup.py index 580201872..d3580a441 100644 --- a/shared/setup.py +++ b/shared/setup.py @@ -18,7 +18,8 @@ setup( package_data={"": ["py.typed"]}, install_requires=[ "click>=8.0.3", - "loguru", + # Pinned until https://github.com/Delgan/loguru/issues/581 is fixed + "loguru==0.5.3", "pydantic", "pyyaml", ],