From 68810a5759209bcd421be846e6e1c81cd8228bc9 Mon Sep 17 00:00:00 2001 From: Juan Escamilla Molgora Date: Mon, 17 Jun 2024 12:20:04 +0200 Subject: [PATCH] [Bug Fix] Pinned version for tenacity A bug related to tenacity.asyncio module appeared in a new version of tenacity (8.4). This broke the execution of `lwe`. The bug was fixed by downgrading tenacity to: 8.3.0 More information here: https://github.com/langchain-ai/langchain/issues/22972 --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 253415a8..da705596 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,3 +26,4 @@ pytest-datadir[dev] pip-tools[dev] flake8[dev] black[dev] +tenacity==8.3.0