Skip to content

Commit fc62090

Browse files
authored
deps: pin tenacity to != 8.4.0 (#497)
* deps: pin tenacity to != 8.4.0 * tests
1 parent 50b5a15 commit fc62090

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

libs/e2e-tests/pyproject.langchain.toml

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ langchain-google-genai = { git = "https://github.com/langchain-ai/langchain-goog
3838
langchain-google-vertexai = { git = "https://github.com/langchain-ai/langchain-google.git", branch = "main", subdirectory = "libs/vertexai" }
3939
langchain-nvidia-ai-endpoints = { git = "https://github.com/langchain-ai/langchain-nvidia.git", branch = "main", subdirectory = "libs/ai-endpoints" }
4040

41+
# tenacity 8.4.0 is broken https://github.com/jd/tenacity/issues/471
42+
tenacity = ">=8.1.0,!=8.4.0"
43+
4144
llama-index = "0.10.43"
4245
llama-index-core = "0.10.43"
4346
llama-index-vector-stores-astra-db = "0.1.7"

libs/e2e-tests/pyproject.llamaindex.toml

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ langchain-google-genai = { version = "1.0.6" }
5353
langchain-google-vertexai = { version = "1.0.5" }
5454
langchain-nvidia-ai-endpoints = { version = "0.1.1" }
5555

56+
# tenacity 8.4.0 is broken https://github.com/jd/tenacity/issues/471
57+
tenacity = ">=8.1.0,!=8.4.0"
58+
5659
unstructured = "0.14.5"
5760

5861
[tool.poetry.group.dev.dependencies]

libs/e2e-tests/pyproject.ragstack-ai.toml

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ langchainhub = "^0.1.15"
2525
# nemoguardrails = "^0.8.0"
2626
nemoguardrails = { git = "https://github.com/NVIDIA/NeMo-Guardrails.git", branch = "develop" }
2727

28+
# tenacity 8.4.0 is broken https://github.com/jd/tenacity/issues/471
29+
tenacity = ">=8.1.0,!=8.4.0"
30+
2831
# From LangChain optional deps, needed by WebBaseLoader
2932
beautifulsoup4 = "^4"
3033

libs/langchain/pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ langchain-google-genai = { version = "1.0.6", optional = true }
2626
langchain-google-vertexai = { version = "1.0.5", optional = true }
2727
langchain-nvidia-ai-endpoints = { version = "0.1.1", optional = true }
2828

29+
# tenacity 8.4.0 is broken https://github.com/jd/tenacity/issues/471
30+
tenacity = ">=8.1.0,!=8.4.0"
31+
2932
[tool.poetry.extras]
3033
colbert = ["ragstack-ai-colbert"]
3134

0 commit comments

Comments
 (0)