acryl-datahub-cloud 0.3.14rc2__py3-none-any.whl → 0.3.14rc4__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.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/metadata/schema.avsc +3 -3
- acryl_datahub_cloud/metadata/schema_classes.py +4 -8
- acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc +3 -3
- {acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/METADATA +38 -38
- {acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/RECORD +10 -10
- {acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/top_level.txt +0 -0
|
@@ -30894,11 +30894,11 @@
|
|
|
30894
30894
|
"filterNameOverride": "Priority"
|
|
30895
30895
|
},
|
|
30896
30896
|
"type": [
|
|
30897
|
-
"
|
|
30898
|
-
"
|
|
30897
|
+
"null",
|
|
30898
|
+
"int"
|
|
30899
30899
|
],
|
|
30900
30900
|
"name": "priority",
|
|
30901
|
-
"default":
|
|
30901
|
+
"default": null,
|
|
30902
30902
|
"doc": "A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.\nCurrently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW\n(We probably should have modeled as an enum)"
|
|
30903
30903
|
},
|
|
30904
30904
|
{
|
|
@@ -21917,7 +21917,7 @@ class IncidentInfoClass(_Aspect):
|
|
|
21917
21917
|
customType: Union[None, str]=None,
|
|
21918
21918
|
title: Union[None, str]=None,
|
|
21919
21919
|
description: Union[None, str]=None,
|
|
21920
|
-
priority:
|
|
21920
|
+
priority: Union[None, int]=None,
|
|
21921
21921
|
assignees: Union[None, List["IncidentAssigneeClass"]]=None,
|
|
21922
21922
|
source: Union[None, "IncidentSourceClass"]=None,
|
|
21923
21923
|
startedAt: Union[None, int]=None,
|
|
@@ -21929,11 +21929,7 @@ class IncidentInfoClass(_Aspect):
|
|
|
21929
21929
|
self.title = title
|
|
21930
21930
|
self.description = description
|
|
21931
21931
|
self.entities = entities
|
|
21932
|
-
|
|
21933
|
-
# default: 0
|
|
21934
|
-
self.priority = self.RECORD_SCHEMA.fields_dict["priority"].default
|
|
21935
|
-
else:
|
|
21936
|
-
self.priority = priority
|
|
21932
|
+
self.priority = priority
|
|
21937
21933
|
self.assignees = assignees
|
|
21938
21934
|
self.status = status
|
|
21939
21935
|
self.source = source
|
|
@@ -22005,14 +22001,14 @@ class IncidentInfoClass(_Aspect):
|
|
|
22005
22001
|
|
|
22006
22002
|
|
|
22007
22003
|
@property
|
|
22008
|
-
def priority(self) -> Union[
|
|
22004
|
+
def priority(self) -> Union[None, int]:
|
|
22009
22005
|
"""A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.
|
|
22010
22006
|
Currently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW
|
|
22011
22007
|
(We probably should have modeled as an enum)"""
|
|
22012
22008
|
return self._inner_dict.get('priority') # type: ignore
|
|
22013
22009
|
|
|
22014
22010
|
@priority.setter
|
|
22015
|
-
def priority(self, value: Union[
|
|
22011
|
+
def priority(self, value: Union[None, int]) -> None:
|
|
22016
22012
|
self._inner_dict['priority'] = value
|
|
22017
22013
|
|
|
22018
22014
|
|
|
@@ -309,11 +309,11 @@
|
|
|
309
309
|
"filterNameOverride": "Priority"
|
|
310
310
|
},
|
|
311
311
|
"type": [
|
|
312
|
-
"
|
|
313
|
-
"
|
|
312
|
+
"null",
|
|
313
|
+
"int"
|
|
314
314
|
],
|
|
315
315
|
"name": "priority",
|
|
316
|
-
"default":
|
|
316
|
+
"default": null,
|
|
317
317
|
"doc": "A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.\nCurrently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW\n(We probably should have modeled as an enum)"
|
|
318
318
|
},
|
|
319
319
|
{
|
|
@@ -120,11 +120,11 @@
|
|
|
120
120
|
"filterNameOverride": "Priority"
|
|
121
121
|
},
|
|
122
122
|
"type": [
|
|
123
|
-
"
|
|
124
|
-
"
|
|
123
|
+
"null",
|
|
124
|
+
"int"
|
|
125
125
|
],
|
|
126
126
|
"name": "priority",
|
|
127
|
-
"default":
|
|
127
|
+
"default": null,
|
|
128
128
|
"doc": "A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.\nCurrently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW\n(We probably should have modeled as an enum)"
|
|
129
129
|
},
|
|
130
130
|
{
|
{acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.14rc4
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: avro-gen3==0.7.16
|
|
6
6
|
Requires-Dist: acryl-datahub
|
|
@@ -9,92 +9,92 @@ Requires-Dist: pytz
|
|
|
9
9
|
Requires-Dist: types-croniter
|
|
10
10
|
Requires-Dist: tzlocal
|
|
11
11
|
Provides-Extra: datahub-lineage-features
|
|
12
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
13
12
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
13
|
+
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
14
14
|
Requires-Dist: tenacity; extra == "datahub-lineage-features"
|
|
15
15
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
16
16
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
17
|
-
Requires-Dist:
|
|
17
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
18
18
|
Provides-Extra: datahub-reporting-forms
|
|
19
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
20
19
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
20
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
21
21
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
22
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
22
23
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
23
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
24
24
|
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-graph
|
|
26
26
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
27
27
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
28
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
28
29
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
29
30
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
30
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
31
31
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
32
32
|
Provides-Extra: datahub-reporting-extract-sql
|
|
33
33
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
34
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
34
35
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
35
36
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
36
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
37
37
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
38
38
|
Provides-Extra: datahub-usage-reporting
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
39
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
42
41
|
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
42
|
+
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
43
43
|
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
44
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
46
45
|
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
47
46
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
48
47
|
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
49
|
-
Requires-Dist:
|
|
48
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
49
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
50
50
|
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
51
51
|
Provides-Extra: datahub-metadata-sharing
|
|
52
52
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
53
53
|
Provides-Extra: datahub-action-request-owner
|
|
54
54
|
Requires-Dist: tenacity; extra == "datahub-action-request-owner"
|
|
55
55
|
Provides-Extra: acryl-cs-issues
|
|
56
|
-
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
57
56
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
58
|
-
Requires-Dist:
|
|
57
|
+
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
59
58
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
59
|
+
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
60
60
|
Provides-Extra: datahub-forms-notifications
|
|
61
61
|
Requires-Dist: tenacity; extra == "datahub-forms-notifications"
|
|
62
62
|
Provides-Extra: all
|
|
63
|
-
Requires-Dist: jinja2; extra == "all"
|
|
64
|
-
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
65
|
-
Requires-Dist: polars==1.30.0; extra == "all"
|
|
66
63
|
Requires-Dist: pyarrow; extra == "all"
|
|
64
|
+
Requires-Dist: duckdb; extra == "all"
|
|
65
|
+
Requires-Dist: polars==1.30.0; extra == "all"
|
|
66
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
67
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
68
|
+
Requires-Dist: jinja2; extra == "all"
|
|
69
|
+
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
67
70
|
Requires-Dist: numpy<2; extra == "all"
|
|
68
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
69
|
-
Requires-Dist: openai; extra == "all"
|
|
70
71
|
Requires-Dist: boto3; extra == "all"
|
|
71
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
72
|
-
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
73
|
-
Requires-Dist: slack-sdk; extra == "all"
|
|
74
|
-
Requires-Dist: tenacity; extra == "all"
|
|
75
|
-
Requires-Dist: pandas; extra == "all"
|
|
76
72
|
Requires-Dist: zenpy; extra == "all"
|
|
77
|
-
Requires-Dist:
|
|
73
|
+
Requires-Dist: pandas; extra == "all"
|
|
74
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
75
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
78
76
|
Requires-Dist: pydantic<2; extra == "all"
|
|
79
|
-
Requires-Dist:
|
|
77
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
78
|
+
Requires-Dist: tenacity; extra == "all"
|
|
79
|
+
Requires-Dist: openai; extra == "all"
|
|
80
80
|
Provides-Extra: dev
|
|
81
|
-
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
82
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
83
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
84
|
-
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
85
|
-
Requires-Dist: tenacity; extra == "dev"
|
|
86
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
87
|
-
Requires-Dist: pandas; extra == "dev"
|
|
88
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
89
|
-
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
90
81
|
Requires-Dist: pyarrow; extra == "dev"
|
|
91
|
-
Requires-Dist:
|
|
82
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
83
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
92
84
|
Requires-Dist: zenpy; extra == "dev"
|
|
85
|
+
Requires-Dist: pandas; extra == "dev"
|
|
86
|
+
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
87
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
88
|
+
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
89
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
93
90
|
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
94
91
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
95
92
|
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
96
|
-
Requires-Dist:
|
|
93
|
+
Requires-Dist: tenacity; extra == "dev"
|
|
94
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
97
95
|
Requires-Dist: openai; extra == "dev"
|
|
96
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
97
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
98
98
|
Requires-Dist: boto3; extra == "dev"
|
|
99
99
|
Dynamic: provides-extra
|
|
100
100
|
Dynamic: requires-dist
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
|
|
2
|
-
acryl_datahub_cloud/_codegen_config.json,sha256=
|
|
2
|
+
acryl_datahub_cloud/_codegen_config.json,sha256=1GJNCm_-TWMBU9tl7_TOehAz21CzS4J_b95gzTl3FSs,556
|
|
3
3
|
acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
|
|
@@ -45,8 +45,8 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
|
|
|
45
45
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
46
|
acryl_datahub_cloud/lineage_features/source.py,sha256=8je_BMcDAiiY-jV4ONYDW973vDC5AwD-DqAi64nGp_c,13800
|
|
47
47
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
48
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
49
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
48
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=8W-qdOPHW9k02UsbGOkQO6_2C9E2Rhn3o_G30FMOsaI,1076510
|
|
49
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=mMYEZuLx3tW-gz2uYOd7LLZZ-zKelXcIdVnAYbfzqLw,1606046
|
|
50
50
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
51
51
|
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=GKx92cbzbGIKBtf2qM-Php_EAh65VJW-QVNwrFuohg4,170696
|
|
52
52
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
@@ -327,8 +327,8 @@ acryl_datahub_cloud/metadata/schemas/GlossaryTerms.avsc,sha256=UOo43tqd69N-7e7YD
|
|
|
327
327
|
acryl_datahub_cloud/metadata/schemas/GroupMembership.avsc,sha256=wT3Hbpv2Z7V4X_-rIoed0cukAOMyYEL93udK8mMCjn0,557
|
|
328
328
|
acryl_datahub_cloud/metadata/schemas/IcebergCatalogInfo.avsc,sha256=X9Ejqzn1DyxNIth7vDhtPjGG4xMPQMhl7f-S7fBFxek,691
|
|
329
329
|
acryl_datahub_cloud/metadata/schemas/IcebergWarehouseInfo.avsc,sha256=0m7cQm8cCnBWNI5jGGgr5ZdOg66RQGWSf3gf8ay53So,2705
|
|
330
|
-
acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc,sha256=
|
|
331
|
-
acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc,sha256=
|
|
330
|
+
acryl_datahub_cloud/metadata/schemas/IncidentActivityEvent.avsc,sha256=5zFQLCoKF8oJZ55G86TZGycrlemDigwq6UDpuurV2Bg,22956
|
|
331
|
+
acryl_datahub_cloud/metadata/schemas/IncidentInfo.avsc,sha256=12Luxqc6DZTLBXtqMFuP3Y-Z59dUP0GzRduc8OMq1xE,13557
|
|
332
332
|
acryl_datahub_cloud/metadata/schemas/IncidentKey.avsc,sha256=4H69JgR_bAzgPbouwcHLkBl5wCxDOZB_Z-A9xWFSkAM,610
|
|
333
333
|
acryl_datahub_cloud/metadata/schemas/IncidentNotificationDetails.avsc,sha256=S2NBYngHPPoZ38oHNS76KZdDD8m53D-1-3Stad4ArZI,2380
|
|
334
334
|
acryl_datahub_cloud/metadata/schemas/IncidentSource.avsc,sha256=qWX6JsryXnchvFCiNj9xRMZjVoweppzG1bYvp-flDlo,1388
|
|
@@ -475,8 +475,8 @@ acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
475
475
|
acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
|
|
476
476
|
acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
477
477
|
acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
478
|
-
acryl_datahub_cloud-0.3.
|
|
479
|
-
acryl_datahub_cloud-0.3.
|
|
480
|
-
acryl_datahub_cloud-0.3.
|
|
481
|
-
acryl_datahub_cloud-0.3.
|
|
482
|
-
acryl_datahub_cloud-0.3.
|
|
478
|
+
acryl_datahub_cloud-0.3.14rc4.dist-info/METADATA,sha256=R4SuSgw-ZY-U4gTetk1ZRuq6SCL776QPEWkJqCITpbg,4856
|
|
479
|
+
acryl_datahub_cloud-0.3.14rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
480
|
+
acryl_datahub_cloud-0.3.14rc4.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
|
|
481
|
+
acryl_datahub_cloud-0.3.14rc4.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
482
|
+
acryl_datahub_cloud-0.3.14rc4.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{acryl_datahub_cloud-0.3.14rc2.dist-info → acryl_datahub_cloud-0.3.14rc4.dist-info}/top_level.txt
RENAMED
|
File without changes
|