diff --git a/setup.py b/setup.py index 14c7ed191d5..e673969e85d 100644 --- a/setup.py +++ b/setup.py @@ -363,7 +363,9 @@ def write_version(filename: str = str(AIRFLOW_SOURCES_ROOT / "airflow" / "git_ve ] sentry = [ "blinker>=1.1", - "sentry-sdk>=1.32.0", + # Sentry SDK 1.33 is broken when greenlets are installed and fails to import + # See https://github.com/getsentry/sentry-python/issues/2473 + "sentry-sdk>=1.32.0,!=1.33.0", ] statsd = [ "statsd>=3.3.0",