Skip to content

Commit

Permalink
Limit 1.33.0 broken sentry_sdk released 31st of October 2023 (apache#…
Browse files Browse the repository at this point in the history
…35298)

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.
  • Loading branch information
potiuk authored Oct 31, 2023
1 parent 1c9d1c2 commit 76847f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
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 76847f8

Please sign in to comment.