sentry-relay 0.8.39__zip → 0.8.41__zip

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,13 @@
1
- Metadata-Version: 1.2
1
+ Metadata-Version: 2.1
2
2
  Name: sentry-relay
3
- Version: 0.8.39
3
+ Version: 0.8.41
4
4
  Summary: A python library to access sentry relay functionality.
5
5
  Home-page: UNKNOWN
6
6
  Author: Sentry
7
7
  Author-email: hello@sentry.io
8
8
  License: FSL-1.0-Apache-2.0
9
- Description: UNKNOWN
10
9
  Platform: any
11
- Requires-Python: >=3.8
10
+ Requires-Python: >=3.9
11
+
12
+ UNKNOWN
13
+
@@ -4,7 +4,6 @@ from enum import IntEnum
4
4
  from sentry_relay._lowlevel import lib
5
5
  from sentry_relay.utils import decode_str, encode_str
6
6
 
7
-
8
7
  __all__ = ["DataCategory", "SPAN_STATUS_CODE_TO_NAME", "SPAN_STATUS_NAME_TO_CODE"]
9
8
 
10
9
 
@@ -26,6 +25,7 @@ class DataCategory(IntEnum):
26
25
  MONITOR_SEAT = 13
27
26
  USER_REPORT_V2 = 14
28
27
  METRIC_BUCKET = 15
28
+ SPAN_INDEXED = 16
29
29
  UNKNOWN = -1
30
30
  # end generated
31
31
 
@@ -112,7 +112,7 @@ setup(
112
112
  package_data={"sentry_relay": ["py.typed", "_lowlevel.pyi"]},
113
113
  zip_safe=False,
114
114
  platforms="any",
115
- python_requires=">=3.8",
115
+ python_requires=">=3.9",
116
116
  install_requires=["milksnake>=0.1.6"],
117
117
  setup_requires=["milksnake>=0.1.6"],
118
118
  milksnake_tasks=[build_native],
@@ -0,0 +1 @@
1
+ 0.8.41
@@ -1 +0,0 @@
1
- 0.8.39
File without changes