This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 76847f8962 Limit 1.33.0 broken sentry_sdk released 31st of October
2023 (#35298)
76847f8962 is described below
commit 76847f89629d853b6afb6ca38114d71d232fb7b1
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Oct 31 16:30:04 2023 +0100
Limit 1.33.0 broken sentry_sdk released 31st of October 2023 (#35298)
The sentry_sdk 1.33.0 is broken, it fails to import when greenlet is
installed. See:
https://github.com/getsentry/sentry-python/issues/2473
Most likely the will quickly release new version so != should be fine.
---
setup.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 2bb22af4e2..997709929b 100644
--- a/setup.py
+++ b/setup.py
@@ -363,7 +363,9 @@ rabbitmq = [
]
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",