tracdap-runtime 0.5.29__py3-none-any.whl → 0.5.30__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.
- tracdap/rt/_version.py +1 -1
- tracdap/rt/config/__init__.py +9 -9
- tracdap/rt/metadata/__init__.py +19 -19
- {tracdap_runtime-0.5.29.dist-info → tracdap_runtime-0.5.30.dist-info}/METADATA +2 -1
- {tracdap_runtime-0.5.29.dist-info → tracdap_runtime-0.5.30.dist-info}/RECORD +8 -8
- {tracdap_runtime-0.5.29.dist-info → tracdap_runtime-0.5.30.dist-info}/WHEEL +1 -1
- {tracdap_runtime-0.5.29.dist-info → tracdap_runtime-0.5.30.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.5.29.dist-info → tracdap_runtime-0.5.30.dist-info}/top_level.txt +0 -0
tracdap/rt/_version.py
CHANGED
tracdap/rt/config/__init__.py
CHANGED
@@ -5,15 +5,6 @@ from .common import PluginConfig
|
|
5
5
|
from .common import PlatformInfo
|
6
6
|
from .common import AuthenticationConfig
|
7
7
|
|
8
|
-
from .gateway import GwProtocol
|
9
|
-
from .gateway import GwRestMapping
|
10
|
-
from .gateway import GatewayConfig
|
11
|
-
from .gateway import GwRoute
|
12
|
-
from .gateway import GwMatch
|
13
|
-
from .gateway import GwTarget
|
14
|
-
from .gateway import GwServiceMap
|
15
|
-
from .gateway import GwService
|
16
|
-
|
17
8
|
from .platform import PlatformConfig
|
18
9
|
from .platform import MetadataConfig
|
19
10
|
from .platform import StorageConfig
|
@@ -26,6 +17,15 @@ from .platform import InstanceConfig
|
|
26
17
|
from .platform import ServiceMap
|
27
18
|
from .platform import ServiceConfig
|
28
19
|
|
20
|
+
from .gateway import GwProtocol
|
21
|
+
from .gateway import GwRestMapping
|
22
|
+
from .gateway import GatewayConfig
|
23
|
+
from .gateway import GwRoute
|
24
|
+
from .gateway import GwMatch
|
25
|
+
from .gateway import GwTarget
|
26
|
+
from .gateway import GwServiceMap
|
27
|
+
from .gateway import GwService
|
28
|
+
|
29
29
|
from .result import TagUpdateList
|
30
30
|
from .result import JobResult
|
31
31
|
|
tracdap/rt/metadata/__init__.py
CHANGED
@@ -17,6 +17,13 @@ from .object_id import ObjectType
|
|
17
17
|
from .object_id import TagHeader
|
18
18
|
from .object_id import TagSelector
|
19
19
|
|
20
|
+
from .search import SearchOperator
|
21
|
+
from .search import LogicalOperator
|
22
|
+
from .search import SearchTerm
|
23
|
+
from .search import LogicalExpression
|
24
|
+
from .search import SearchExpression
|
25
|
+
from .search import SearchParameters
|
26
|
+
|
20
27
|
from .data import SchemaType
|
21
28
|
from .data import PartType
|
22
29
|
from .data import FieldSchema
|
@@ -25,21 +32,23 @@ from .data import SchemaDefinition
|
|
25
32
|
from .data import PartKey
|
26
33
|
from .data import DataDefinition
|
27
34
|
|
28
|
-
from .
|
29
|
-
from .model import ModelInputSchema
|
30
|
-
from .model import ModelOutputSchema
|
31
|
-
from .model import ModelDefinition
|
35
|
+
from .file import FileDefinition
|
32
36
|
|
33
|
-
from .
|
34
|
-
from .
|
35
|
-
from .
|
36
|
-
from .
|
37
|
-
from .
|
38
|
-
from .
|
37
|
+
from .stoarge import CopyStatus
|
38
|
+
from .stoarge import IncarnationStatus
|
39
|
+
from .stoarge import StorageCopy
|
40
|
+
from .stoarge import StorageIncarnation
|
41
|
+
from .stoarge import StorageItem
|
42
|
+
from .stoarge import StorageDefinition
|
39
43
|
|
40
44
|
from .tag_update import TagOperation
|
41
45
|
from .tag_update import TagUpdate
|
42
46
|
|
47
|
+
from .model import ModelParameter
|
48
|
+
from .model import ModelInputSchema
|
49
|
+
from .model import ModelOutputSchema
|
50
|
+
from .model import ModelDefinition
|
51
|
+
|
43
52
|
from .flow import FlowNodeType
|
44
53
|
from .flow import FlowNode
|
45
54
|
from .flow import FlowSocket
|
@@ -53,17 +62,8 @@ from .job import RunModelJob
|
|
53
62
|
from .job import RunFlowJob
|
54
63
|
from .job import ImportModelJob
|
55
64
|
|
56
|
-
from .file import FileDefinition
|
57
|
-
|
58
65
|
from .custom import CustomDefinition
|
59
66
|
|
60
|
-
from .stoarge import CopyStatus
|
61
|
-
from .stoarge import IncarnationStatus
|
62
|
-
from .stoarge import StorageCopy
|
63
|
-
from .stoarge import StorageIncarnation
|
64
|
-
from .stoarge import StorageItem
|
65
|
-
from .stoarge import StorageDefinition
|
66
|
-
|
67
67
|
from .object import ObjectDefinition
|
68
68
|
|
69
69
|
from .tag import Tag
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tracdap-runtime
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.30
|
4
4
|
Summary: Runtime package for building models on the TRAC Data & Analytics Platform
|
5
5
|
Home-page: https://tracdap.finos.org/
|
6
6
|
Author: Martin Traverse
|
@@ -22,6 +22,7 @@ Requires-Dist: pyyaml ==6.0.0
|
|
22
22
|
Requires-Dist: dulwich ==0.21.2
|
23
23
|
Requires-Dist: requests ==2.31.0
|
24
24
|
Requires-Dist: pandas <2.2.0,>=1.2.0
|
25
|
+
Requires-Dist: numpy <2.0.0
|
25
26
|
Provides-Extra: aws
|
26
27
|
Requires-Dist: boto3 ==1.26.22 ; extra == 'aws'
|
27
28
|
Provides-Extra: spark
|
@@ -1,5 +1,5 @@
|
|
1
1
|
tracdap/rt/__init__.py,sha256=rz9ERpKMlnR4LFZNGLtdNE26B_Y2V168bdd8hRmasKk,643
|
2
|
-
tracdap/rt/_version.py,sha256=
|
2
|
+
tracdap/rt/_version.py,sha256=krI77g3AnXMgUfWuNKj9uat-Gv5TDR8WCP6P9Sb8y4E,632
|
3
3
|
tracdap/rt/exceptions.py,sha256=7nLYOOquROJwMBHJAoPHUbmrwp9jkT7LuR6lCsc7Am8,7730
|
4
4
|
tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
tracdap/rt/_exec/actors.py,sha256=faZ7hCxsONLbjQKrFRZv-wL_aXaKjsgbLOHDI0uUXDc,32242
|
@@ -37,7 +37,7 @@ tracdap/rt/api/__init__.py,sha256=rOiUwK6sav9QTXohpZAFXJ9MgsL0KBfUyKA7dYspfGQ,11
|
|
37
37
|
tracdap/rt/api/hook.py,sha256=3gc90J2mzp27koDysHvl8HwiSePw0hjg1BED3VhZVR4,4033
|
38
38
|
tracdap/rt/api/model_api.py,sha256=S2Dz7cre5pFIK3jw8Qlv6D90bv6KSULdbPkMBurEkAM,15402
|
39
39
|
tracdap/rt/api/static_api.py,sha256=6wwsF6nQG56NPocAs8VUUN5zL1fVFLDDOvcqW-dbhvo,20725
|
40
|
-
tracdap/rt/config/__init__.py,sha256=
|
40
|
+
tracdap/rt/config/__init__.py,sha256=doDFsgsVexgXHsGYtigdIwf_0UfyqZuD3QZOqQGY3GI,991
|
41
41
|
tracdap/rt/config/common.py,sha256=p5K6W6PVfTB9Ag3VXsM0HAhk4lW-_owaFmmELsoPkSI,1026
|
42
42
|
tracdap/rt/config/common_pb2.py,sha256=2x6--pFrp1pwJkZNwCiBik6kTJ32CdzFD7DjZDmnrBY,3732
|
43
43
|
tracdap/rt/config/gateway.py,sha256=Uz1ihOTHGLU0GBBIHAaZCV0ufyyHQJtQnAHeqD1dyOM,1551
|
@@ -60,7 +60,7 @@ tracdap/rt/launch/__init__.py,sha256=Zz_4f_ODsmweCxRmG2Dq1Slpb927jSugYclfF_Wgfws
|
|
60
60
|
tracdap/rt/launch/__main__.py,sha256=9UVYYSsqvvMVOqjjBBeLNdzV_6IeIa_97KWOMXIpXY4,654
|
61
61
|
tracdap/rt/launch/cli.py,sha256=giC30Dffz9eYd-7fDQqTZ65OXDDf0OPmKb6NV_meePE,2196
|
62
62
|
tracdap/rt/launch/launch.py,sha256=ap6PWdIS4eg43aCK2A-bdAoXS75ZUIT3Kt-6Uc-4eNw,4497
|
63
|
-
tracdap/rt/metadata/__init__.py,sha256=
|
63
|
+
tracdap/rt/metadata/__init__.py,sha256=hm_6z9Dr8lCyOLzcqo69xtWTg0KkiCKH0I4Mnb1Umlc,1779
|
64
64
|
tracdap/rt/metadata/common.py,sha256=HIOphjbX_y7gRpERThb0Hrgiij1qaSc9XmvcWiuE3nI,1453
|
65
65
|
tracdap/rt/metadata/common_pb2.py,sha256=l3PJBc6jOoPD8o6KFJMoDYHMMQ5S3HyuTH2lFTfGPF4,1710
|
66
66
|
tracdap/rt/metadata/custom.py,sha256=bNG2Fy8uYz1qE8idgN1h4EHkecV95BG0ruEl7XUWvRU,295
|
@@ -89,8 +89,8 @@ tracdap/rt/metadata/tag_update.py,sha256=gSNG1Nv4mIhcmBcuMa5P6pmuj_R4DwHc9R7riSw
|
|
89
89
|
tracdap/rt/metadata/tag_update_pb2.py,sha256=Fcp59cwjzlPWnjoOxIBxVLA6frEVHhqwg-_NntqLu-Y,1816
|
90
90
|
tracdap/rt/metadata/type.py,sha256=a11dBdO8Cp8fkXfS9Xom1IDqz3BQZenzvGY20V855QE,9402
|
91
91
|
tracdap/rt/metadata/type_pb2.py,sha256=RooCizEbIXEA_UJ0i1qd2mtBY0SjcA_aJWuJ8qNhNV8,3920
|
92
|
-
tracdap_runtime-0.5.
|
93
|
-
tracdap_runtime-0.5.
|
94
|
-
tracdap_runtime-0.5.
|
95
|
-
tracdap_runtime-0.5.
|
96
|
-
tracdap_runtime-0.5.
|
92
|
+
tracdap_runtime-0.5.30.dist-info/LICENSE,sha256=Q5Gh9SdMNa_F2ehQRShh7dJBz6qW_EQFtWzLukOWFWY,11365
|
93
|
+
tracdap_runtime-0.5.30.dist-info/METADATA,sha256=z5roQQrBYaWoOIAVxt8luqd1KqZ81AnHUiuquhhb7VY,4140
|
94
|
+
tracdap_runtime-0.5.30.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
95
|
+
tracdap_runtime-0.5.30.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
|
96
|
+
tracdap_runtime-0.5.30.dist-info/RECORD,,
|
File without changes
|
File without changes
|