From 1bcc9a67eb435df3b3c00849e41abaceb876ccbf Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Tue, 27 Feb 2024 12:36:24 -0800 Subject: [PATCH] feat(ingest): loosen sentry requirements (#9936) --- metadata-ingestion/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index f29869638f..6c7786f30b 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -21,7 +21,8 @@ base_requirements = { # pydantic 1.10.3 is incompatible with typing-extensions 4.1.1 - https://github.com/pydantic/pydantic/issues/4885 "pydantic>=1.10.0,!=1.10.3", "mixpanel>=4.9.0", - "sentry-sdk>=1.40.5", + # Airflow depends on fairly old versions of sentry-sdk, so we want to be loose with our constraints. + "sentry-sdk", } framework_common = {