Skip to content

Commit

Permalink
Limit 1.33.0 broken sentry_sdk released 31st of October 2023 (#35298)
Browse files Browse the repository at this point in the history
The sentry_sdk 1.33.0 is broken, it fails to import when greenlet is
installed. See:

getsentry/sentry-python#2473

Most likely the will quickly release new version so != should be fine.

(cherry picked from commit 76847f8)
  • Loading branch information
potiuk authored and ephraimbuddy committed Oct 31, 2023
1 parent d092297 commit b9af4ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -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",
Expand Down

0 comments on commit b9af4ef

Please sign in to comment.