acryl-datahub-cloud 0.3.7.5__py3-none-any.whl → 0.3.7.7__py3-none-any.whl

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.
Files changed (30) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +7 -11
  3. acryl_datahub_cloud/metadata/_urns/urn_defs.py +54 -0
  4. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +2 -0
  5. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
  6. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/versionset/__init__.py +17 -0
  7. acryl_datahub_cloud/metadata/schema.avsc +207 -19
  8. acryl_datahub_cloud/metadata/schema_classes.py +262 -2
  9. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +1 -1
  10. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +1 -1
  11. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +1 -1
  12. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +2 -1
  13. acryl_datahub_cloud/metadata/schemas/InputFields.avsc +1 -1
  14. acryl_datahub_cloud/metadata/schemas/MLFeatureProperties.avsc +51 -0
  15. acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc +51 -0
  16. acryl_datahub_cloud/metadata/schemas/MLModelGroupProperties.avsc +51 -0
  17. acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +2 -1
  18. acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc +51 -0
  19. acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyProperties.avsc +51 -0
  20. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +9 -1
  21. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +1 -1
  22. acryl_datahub_cloud/metadata/schemas/SchemaMetadata.avsc +1 -1
  23. acryl_datahub_cloud/metadata/schemas/VersionProperties.avsc +212 -0
  24. acryl_datahub_cloud/metadata/schemas/VersionSetKey.avsc +26 -0
  25. acryl_datahub_cloud/metadata/schemas/VersionSetProperties.avsc +49 -0
  26. {acryl_datahub_cloud-0.3.7.5.dist-info → acryl_datahub_cloud-0.3.7.7.dist-info}/METADATA +37 -34
  27. {acryl_datahub_cloud-0.3.7.5.dist-info → acryl_datahub_cloud-0.3.7.7.dist-info}/RECORD +30 -26
  28. {acryl_datahub_cloud-0.3.7.5.dist-info → acryl_datahub_cloud-0.3.7.7.dist-info}/WHEEL +0 -0
  29. {acryl_datahub_cloud-0.3.7.5.dist-info → acryl_datahub_cloud-0.3.7.7.dist-info}/entry_points.txt +0 -0
  30. {acryl_datahub_cloud-0.3.7.5.dist-info → acryl_datahub_cloud-0.3.7.7.dist-info}/top_level.txt +0 -0
@@ -74,6 +74,57 @@
74
74
  ],
75
75
  "name": "versionTag",
76
76
  "default": null
77
+ },
78
+ {
79
+ "type": [
80
+ "null",
81
+ {
82
+ "type": "record",
83
+ "name": "MetadataAttribution",
84
+ "namespace": "com.linkedin.pegasus2avro.common",
85
+ "fields": [
86
+ {
87
+ "type": "long",
88
+ "name": "time",
89
+ "doc": "When this metadata was updated."
90
+ },
91
+ {
92
+ "java": {
93
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
94
+ },
95
+ "type": "string",
96
+ "name": "actor",
97
+ "doc": "The entity (e.g. a member URN) responsible for applying the assocated metadata. This can\neither be a user (in case of UI edits) or the datahub system for automation.",
98
+ "Urn": "Urn"
99
+ },
100
+ {
101
+ "java": {
102
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
103
+ },
104
+ "type": [
105
+ "null",
106
+ "string"
107
+ ],
108
+ "name": "source",
109
+ "default": null,
110
+ "doc": "The DataHub source responsible for applying the associated metadata. This will only be filled out\nwhen a DataHub source is responsible. This includes the specific metadata test urn, the automation urn.",
111
+ "Urn": "Urn"
112
+ },
113
+ {
114
+ "type": {
115
+ "type": "map",
116
+ "values": "string"
117
+ },
118
+ "name": "sourceDetail",
119
+ "default": {},
120
+ "doc": "The details associated with why this metadata was applied. For example, this could include\nthe actual regex rule, sql statement, ingestion pipeline ID, etc.\nAlso can include flags like 'propagated'=true or 'inferred'=true."
121
+ }
122
+ ],
123
+ "doc": "Information about who, why, and how this metadata was applied"
124
+ }
125
+ ],
126
+ "name": "metadataAttribution",
127
+ "default": null
77
128
  }
78
129
  ],
79
130
  "doc": "A resource-defined string representing the resource state for the purpose of concurrency control"
@@ -101,6 +101,57 @@
101
101
  ],
102
102
  "name": "versionTag",
103
103
  "default": null
104
+ },
105
+ {
106
+ "type": [
107
+ "null",
108
+ {
109
+ "type": "record",
110
+ "name": "MetadataAttribution",
111
+ "namespace": "com.linkedin.pegasus2avro.common",
112
+ "fields": [
113
+ {
114
+ "type": "long",
115
+ "name": "time",
116
+ "doc": "When this metadata was updated."
117
+ },
118
+ {
119
+ "java": {
120
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
121
+ },
122
+ "type": "string",
123
+ "name": "actor",
124
+ "doc": "The entity (e.g. a member URN) responsible for applying the assocated metadata. This can\neither be a user (in case of UI edits) or the datahub system for automation.",
125
+ "Urn": "Urn"
126
+ },
127
+ {
128
+ "java": {
129
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
130
+ },
131
+ "type": [
132
+ "null",
133
+ "string"
134
+ ],
135
+ "name": "source",
136
+ "default": null,
137
+ "doc": "The DataHub source responsible for applying the associated metadata. This will only be filled out\nwhen a DataHub source is responsible. This includes the specific metadata test urn, the automation urn.",
138
+ "Urn": "Urn"
139
+ },
140
+ {
141
+ "type": {
142
+ "type": "map",
143
+ "values": "string"
144
+ },
145
+ "name": "sourceDetail",
146
+ "default": {},
147
+ "doc": "The details associated with why this metadata was applied. For example, this could include\nthe actual regex rule, sql statement, ingestion pipeline ID, etc.\nAlso can include flags like 'propagated'=true or 'inferred'=true."
148
+ }
149
+ ],
150
+ "doc": "Information about who, why, and how this metadata was applied"
151
+ }
152
+ ],
153
+ "name": "metadataAttribution",
154
+ "default": null
104
155
  }
105
156
  ],
106
157
  "doc": "A resource-defined string representing the resource state for the purpose of concurrency control"
@@ -4671,7 +4671,7 @@
4671
4671
  "fields": [
4672
4672
  {
4673
4673
  "Searchable": {
4674
- "boostScore": 5.0,
4674
+ "boostScore": 1.0,
4675
4675
  "fieldName": "fieldPaths",
4676
4676
  "fieldType": "TEXT",
4677
4677
  "queryByDefault": "true"
@@ -5806,6 +5806,14 @@
5806
5806
  ],
5807
5807
  "name": "versionTag",
5808
5808
  "default": null
5809
+ },
5810
+ {
5811
+ "type": [
5812
+ "null",
5813
+ "com.linkedin.pegasus2avro.common.MetadataAttribution"
5814
+ ],
5815
+ "name": "metadataAttribution",
5816
+ "default": null
5809
5817
  }
5810
5818
  ],
5811
5819
  "doc": "A resource-defined string representing the resource state for the purpose of concurrency control"
@@ -2070,7 +2070,7 @@
2070
2070
  "fields": [
2071
2071
  {
2072
2072
  "Searchable": {
2073
- "boostScore": 5.0,
2073
+ "boostScore": 1.0,
2074
2074
  "fieldName": "fieldPaths",
2075
2075
  "fieldType": "TEXT",
2076
2076
  "queryByDefault": "true"
@@ -309,7 +309,7 @@
309
309
  "fields": [
310
310
  {
311
311
  "Searchable": {
312
- "boostScore": 5.0,
312
+ "boostScore": 1.0,
313
313
  "fieldName": "fieldPaths",
314
314
  "fieldType": "TEXT",
315
315
  "queryByDefault": "true"
@@ -0,0 +1,212 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "versionProperties"
5
+ },
6
+ "name": "VersionProperties",
7
+ "namespace": "com.linkedin.pegasus2avro.common",
8
+ "fields": [
9
+ {
10
+ "Relationship": {
11
+ "entityTypes": [
12
+ "versionSet"
13
+ ],
14
+ "name": "VersionOf"
15
+ },
16
+ "Searchable": {
17
+ "queryByDefault": false
18
+ },
19
+ "java": {
20
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
21
+ },
22
+ "type": "string",
23
+ "name": "versionSet",
24
+ "doc": "The linked Version Set entity that ties multiple versioned assets together",
25
+ "Urn": "Urn",
26
+ "entityTypes": [
27
+ "versionSet"
28
+ ]
29
+ },
30
+ {
31
+ "Searchable": {
32
+ "/versionTag": {
33
+ "fieldName": "version",
34
+ "queryByDefault": false
35
+ }
36
+ },
37
+ "type": {
38
+ "type": "record",
39
+ "name": "VersionTag",
40
+ "namespace": "com.linkedin.pegasus2avro.common",
41
+ "fields": [
42
+ {
43
+ "type": [
44
+ "null",
45
+ "string"
46
+ ],
47
+ "name": "versionTag",
48
+ "default": null
49
+ },
50
+ {
51
+ "type": [
52
+ "null",
53
+ {
54
+ "type": "record",
55
+ "name": "MetadataAttribution",
56
+ "namespace": "com.linkedin.pegasus2avro.common",
57
+ "fields": [
58
+ {
59
+ "type": "long",
60
+ "name": "time",
61
+ "doc": "When this metadata was updated."
62
+ },
63
+ {
64
+ "java": {
65
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
66
+ },
67
+ "type": "string",
68
+ "name": "actor",
69
+ "doc": "The entity (e.g. a member URN) responsible for applying the assocated metadata. This can\neither be a user (in case of UI edits) or the datahub system for automation.",
70
+ "Urn": "Urn"
71
+ },
72
+ {
73
+ "java": {
74
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
75
+ },
76
+ "type": [
77
+ "null",
78
+ "string"
79
+ ],
80
+ "name": "source",
81
+ "default": null,
82
+ "doc": "The DataHub source responsible for applying the associated metadata. This will only be filled out\nwhen a DataHub source is responsible. This includes the specific metadata test urn, the automation urn.",
83
+ "Urn": "Urn"
84
+ },
85
+ {
86
+ "type": {
87
+ "type": "map",
88
+ "values": "string"
89
+ },
90
+ "name": "sourceDetail",
91
+ "default": {},
92
+ "doc": "The details associated with why this metadata was applied. For example, this could include\nthe actual regex rule, sql statement, ingestion pipeline ID, etc.\nAlso can include flags like 'propagated'=true or 'inferred'=true."
93
+ }
94
+ ],
95
+ "doc": "Information about who, why, and how this metadata was applied"
96
+ }
97
+ ],
98
+ "name": "metadataAttribution",
99
+ "default": null
100
+ }
101
+ ],
102
+ "doc": "A resource-defined string representing the resource state for the purpose of concurrency control"
103
+ },
104
+ "name": "version",
105
+ "doc": "Label for this versioned asset, is unique within a version set"
106
+ },
107
+ {
108
+ "Searchable": {
109
+ "/*/versionTag": {
110
+ "fieldName": "aliases",
111
+ "queryByDefault": false
112
+ }
113
+ },
114
+ "type": {
115
+ "type": "array",
116
+ "items": "com.linkedin.pegasus2avro.common.VersionTag"
117
+ },
118
+ "name": "aliases",
119
+ "default": [],
120
+ "doc": "Associated aliases for this versioned asset"
121
+ },
122
+ {
123
+ "type": [
124
+ "null",
125
+ "string"
126
+ ],
127
+ "name": "comment",
128
+ "default": null,
129
+ "doc": "Comment documenting what this version was created for, changes, or represents"
130
+ },
131
+ {
132
+ "Searchable": {
133
+ "fieldName": "versionSortId",
134
+ "queryByDefault": false
135
+ },
136
+ "type": "string",
137
+ "name": "sortId",
138
+ "doc": "Sort identifier that determines where a version lives in the order of the Version Set.\nWhat this looks like depends on the Version Scheme. For sort ids generated by DataHub we use an 8 character string representation."
139
+ },
140
+ {
141
+ "type": [
142
+ "null",
143
+ {
144
+ "type": "record",
145
+ "name": "AuditStamp",
146
+ "namespace": "com.linkedin.pegasus2avro.common",
147
+ "fields": [
148
+ {
149
+ "type": "long",
150
+ "name": "time",
151
+ "doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
152
+ },
153
+ {
154
+ "java": {
155
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
156
+ },
157
+ "type": "string",
158
+ "name": "actor",
159
+ "doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
160
+ "Urn": "Urn"
161
+ },
162
+ {
163
+ "java": {
164
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
165
+ },
166
+ "type": [
167
+ "null",
168
+ "string"
169
+ ],
170
+ "name": "impersonator",
171
+ "default": null,
172
+ "doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
173
+ "Urn": "Urn"
174
+ },
175
+ {
176
+ "type": [
177
+ "null",
178
+ "string"
179
+ ],
180
+ "name": "message",
181
+ "default": null,
182
+ "doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
183
+ }
184
+ ],
185
+ "doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
186
+ }
187
+ ],
188
+ "name": "sourceCreatedTimestamp",
189
+ "default": null,
190
+ "doc": "Timestamp reflecting when this asset version was created in the source system."
191
+ },
192
+ {
193
+ "type": [
194
+ "null",
195
+ "com.linkedin.pegasus2avro.common.AuditStamp"
196
+ ],
197
+ "name": "metadataCreatedTimestamp",
198
+ "default": null,
199
+ "doc": "Timestamp reflecting when the metadata for this version was created in DataHub"
200
+ },
201
+ {
202
+ "type": [
203
+ "null",
204
+ "boolean"
205
+ ],
206
+ "name": "isLatest",
207
+ "default": null,
208
+ "doc": "Marks whether this version is currently the latest. Set by a side effect and should not be modified by API."
209
+ }
210
+ ],
211
+ "doc": "Properties about a versioned asset i.e. dataset, ML Model, etc."
212
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "versionSetKey",
5
+ "keyForEntity": "versionSet",
6
+ "entityCategory": "core",
7
+ "entityAspects": [
8
+ "versionSetProperties"
9
+ ]
10
+ },
11
+ "name": "VersionSetKey",
12
+ "namespace": "com.linkedin.pegasus2avro.metadata.key",
13
+ "fields": [
14
+ {
15
+ "type": "string",
16
+ "name": "id",
17
+ "doc": "ID of the Version Set, generated from platform + asset id / name"
18
+ },
19
+ {
20
+ "type": "string",
21
+ "name": "entityType",
22
+ "doc": "Type of entities included in version set, limits to a single entity type between linked versioned entities"
23
+ }
24
+ ],
25
+ "doc": "Key for a Version Set entity"
26
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "versionSetProperties"
5
+ },
6
+ "name": "VersionSetProperties",
7
+ "namespace": "com.linkedin.pegasus2avro.versionset",
8
+ "fields": [
9
+ {
10
+ "Searchable": {
11
+ "/*": {
12
+ "fieldType": "TEXT",
13
+ "queryByDefault": true
14
+ }
15
+ },
16
+ "type": {
17
+ "type": "map",
18
+ "values": "string"
19
+ },
20
+ "name": "customProperties",
21
+ "default": {},
22
+ "doc": "Custom property bag."
23
+ },
24
+ {
25
+ "Searchable": {
26
+ "queryByDefault": "false"
27
+ },
28
+ "java": {
29
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
30
+ },
31
+ "type": "string",
32
+ "name": "latest",
33
+ "doc": "The latest versioned entity linked to in this version set",
34
+ "Urn": "Urn"
35
+ },
36
+ {
37
+ "type": {
38
+ "type": "enum",
39
+ "name": "VersioningScheme",
40
+ "namespace": "com.linkedin.pegasus2avro.versionset",
41
+ "symbols": [
42
+ "ALPHANUMERIC_GENERATED_BY_DATAHUB"
43
+ ]
44
+ },
45
+ "name": "versioningScheme",
46
+ "doc": "What versioning scheme is being utilized for the versioned entities sort criterion. Static once set"
47
+ }
48
+ ]
49
+ }
@@ -1,77 +1,80 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.7.5
3
+ Version: 0.3.7.7
4
4
  Requires-Dist: avro-gen3==0.7.16
5
5
  Requires-Dist: acryl-datahub
6
6
  Provides-Extra: datahub-lineage-features
7
- Requires-Dist: pandas; extra == "datahub-lineage-features"
8
- Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
9
- Requires-Dist: duckdb; extra == "datahub-lineage-features"
10
7
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
8
+ Requires-Dist: duckdb; extra == "datahub-lineage-features"
11
9
  Requires-Dist: pyarrow; extra == "datahub-lineage-features"
10
+ Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
11
+ Requires-Dist: pandas; extra == "datahub-lineage-features"
12
12
  Provides-Extra: datahub-reporting-forms
13
13
  Requires-Dist: boto3; extra == "datahub-reporting-forms"
14
- Requires-Dist: pandas; extra == "datahub-reporting-forms"
15
- Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
16
14
  Requires-Dist: duckdb; extra == "datahub-reporting-forms"
17
15
  Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
16
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
17
+ Requires-Dist: pandas; extra == "datahub-reporting-forms"
18
18
  Provides-Extra: datahub-reporting-extract-graph
19
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
19
20
  Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
20
- Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
21
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
22
21
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
23
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
24
22
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
23
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
24
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
25
25
  Provides-Extra: datahub-reporting-extract-sql
26
26
  Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
27
- Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
28
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
29
27
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
30
28
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
29
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
30
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
31
31
  Provides-Extra: datahub-usage-feature-reporting
32
+ Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
32
33
  Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
33
- Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
34
+ Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
35
+ Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
34
36
  Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
35
37
  Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
36
- Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
37
- Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
38
- Requires-Dist: polars; extra == "datahub-usage-feature-reporting"
39
- Requires-Dist: scipy; extra == "datahub-usage-feature-reporting"
40
38
  Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
39
+ Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
40
+ Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
41
41
  Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
42
+ Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
42
43
  Provides-Extra: acryl-cs-issues
43
44
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
44
- Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
45
45
  Requires-Dist: openai; extra == "acryl-cs-issues"
46
46
  Requires-Dist: jinja2; extra == "acryl-cs-issues"
47
+ Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
47
48
  Provides-Extra: all
49
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
48
50
  Requires-Dist: boto3; extra == "all"
49
- Requires-Dist: pandas; extra == "all"
51
+ Requires-Dist: polars<=1.16.0; extra == "all"
52
+ Requires-Dist: scipy<=1.14.1; extra == "all"
50
53
  Requires-Dist: pydantic<2; extra == "all"
51
54
  Requires-Dist: elasticsearch==7.13.4; extra == "all"
52
- Requires-Dist: duckdb; extra == "all"
53
- Requires-Dist: opensearch-py==2.4.2; extra == "all"
54
- Requires-Dist: zenpy; extra == "all"
55
- Requires-Dist: openai; extra == "all"
56
55
  Requires-Dist: jinja2; extra == "all"
57
- Requires-Dist: polars; extra == "all"
58
- Requires-Dist: slack-sdk; extra == "all"
59
- Requires-Dist: scipy; extra == "all"
60
56
  Requires-Dist: numpy<2; extra == "all"
57
+ Requires-Dist: opensearch-py==2.4.2; extra == "all"
58
+ Requires-Dist: duckdb; extra == "all"
59
+ Requires-Dist: openai; extra == "all"
60
+ Requires-Dist: zenpy; extra == "all"
61
61
  Requires-Dist: pyarrow; extra == "all"
62
+ Requires-Dist: pandas; extra == "all"
63
+ Requires-Dist: slack-sdk; extra == "all"
62
64
  Provides-Extra: dev
65
+ Requires-Dist: pyarrow<=18.0.0; extra == "dev"
63
66
  Requires-Dist: boto3; extra == "dev"
64
- Requires-Dist: numpy<2; extra == "dev"
65
- Requires-Dist: pandas; extra == "dev"
67
+ Requires-Dist: polars<=1.16.0; extra == "dev"
68
+ Requires-Dist: scipy<=1.14.1; extra == "dev"
66
69
  Requires-Dist: pydantic<2; extra == "dev"
67
70
  Requires-Dist: elasticsearch==7.13.4; extra == "dev"
68
- Requires-Dist: duckdb; extra == "dev"
69
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
70
- Requires-Dist: zenpy; extra == "dev"
71
- Requires-Dist: openai; extra == "dev"
72
71
  Requires-Dist: jinja2; extra == "dev"
73
- Requires-Dist: polars; extra == "dev"
74
- Requires-Dist: slack-sdk; extra == "dev"
75
- Requires-Dist: scipy; extra == "dev"
72
+ Requires-Dist: numpy<2; extra == "dev"
76
73
  Requires-Dist: acryl-datahub[dev]; extra == "dev"
74
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
75
+ Requires-Dist: duckdb; extra == "dev"
76
+ Requires-Dist: openai; extra == "dev"
77
+ Requires-Dist: zenpy; extra == "dev"
77
78
  Requires-Dist: pyarrow; extra == "dev"
79
+ Requires-Dist: pandas; extra == "dev"
80
+ Requires-Dist: slack-sdk; extra == "dev"