From 5a0d0c693003aa3fc89bfedce6dce1359d48d9a9 Mon Sep 17 00:00:00 2001 From: _00_ <131402327+rgaricano@users.noreply.github.com> Date: Thu, 17 Jul 2025 10:12:37 +0200 Subject: [PATCH] FIX: Add posthog lib to avoid opentelemetry issue Add "posthog==5.4.0" lib to requirements to avoid chromadb issue for lib versions incompatibility with that lib (chromadb requiere posthog>=2.4.0,<6.0.0 ) which produce error in opentelemetry. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f9e0848acf..5812a6b29a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -136,6 +136,8 @@ dependencies = [ "moto[s3]>=5.0.26", + "posthog==5.4.0", + ] readme = "README.md" requires-python = ">= 3.11, < 3.13.0a1"