tracdap-runtime 0.7.0rc1__py3-none-any.whl → 0.8.0b1__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/_exec/context.py +140 -64
- tracdap/rt/_exec/dev_mode.py +144 -69
- tracdap/rt/_exec/engine.py +9 -7
- tracdap/rt/_exec/functions.py +95 -33
- tracdap/rt/_exec/graph.py +22 -15
- tracdap/rt/_exec/graph_builder.py +221 -98
- tracdap/rt/_exec/runtime.py +19 -6
- tracdap/rt/_impl/data.py +86 -13
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py +3 -1
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi +8 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +27 -25
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +14 -4
- tracdap/rt/_impl/models.py +9 -7
- tracdap/rt/_impl/static_api.py +53 -33
- tracdap/rt/_impl/util.py +1 -1
- tracdap/rt/_impl/validation.py +54 -28
- tracdap/rt/_version.py +1 -1
- tracdap/rt/api/__init__.py +6 -3
- tracdap/rt/api/file_types.py +29 -0
- tracdap/rt/api/hook.py +15 -7
- tracdap/rt/api/model_api.py +16 -0
- tracdap/rt/api/static_api.py +211 -125
- tracdap/rt/config/__init__.py +6 -6
- tracdap/rt/config/common.py +11 -1
- tracdap/rt/config/platform.py +4 -6
- tracdap/rt/launch/launch.py +9 -11
- tracdap/rt/metadata/__init__.py +10 -9
- tracdap/rt/metadata/file.py +8 -0
- tracdap/rt/metadata/model.py +12 -2
- {tracdap_runtime-0.7.0rc1.dist-info → tracdap_runtime-0.8.0b1.dist-info}/METADATA +15 -15
- {tracdap_runtime-0.7.0rc1.dist-info → tracdap_runtime-0.8.0b1.dist-info}/RECORD +34 -33
- {tracdap_runtime-0.7.0rc1.dist-info → tracdap_runtime-0.8.0b1.dist-info}/WHEEL +1 -1
- {tracdap_runtime-0.7.0rc1.dist-info → tracdap_runtime-0.8.0b1.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.7.0rc1.dist-info → tracdap_runtime-0.8.0b1.dist-info}/top_level.txt +0 -0
tracdap/rt/metadata/file.py
CHANGED
tracdap/rt/metadata/model.py
CHANGED
@@ -5,7 +5,9 @@ import dataclasses as _dc # noqa
|
|
5
5
|
import enum as _enum # noqa
|
6
6
|
|
7
7
|
from .type import * # noqa
|
8
|
+
from .object_id import * # noqa
|
8
9
|
from .data import * # noqa
|
10
|
+
from .file import * # noqa
|
9
11
|
|
10
12
|
|
11
13
|
class ModelType(_enum.Enum):
|
@@ -54,7 +56,11 @@ class ModelInputSchema:
|
|
54
56
|
other options may be required. These capabilities may be added in future releases.
|
55
57
|
"""
|
56
58
|
|
57
|
-
|
59
|
+
objectType: "ObjectType" = ObjectType.OBJECT_TYPE_NOT_SET
|
60
|
+
|
61
|
+
schema: "_tp.Optional[SchemaDefinition]" = None
|
62
|
+
|
63
|
+
fileType: "_tp.Optional[FileType]" = None
|
58
64
|
|
59
65
|
label: "_tp.Optional[str]" = None
|
60
66
|
|
@@ -81,7 +87,11 @@ class ModelOutputSchema:
|
|
81
87
|
added in future releases.
|
82
88
|
"""
|
83
89
|
|
84
|
-
|
90
|
+
objectType: "ObjectType" = ObjectType.OBJECT_TYPE_NOT_SET
|
91
|
+
|
92
|
+
schema: "_tp.Optional[SchemaDefinition]" = None
|
93
|
+
|
94
|
+
fileType: "_tp.Optional[FileType]" = None
|
85
95
|
|
86
96
|
label: "_tp.Optional[str]" = None
|
87
97
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tracdap-runtime
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.8.0b1
|
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
|
@@ -23,28 +23,28 @@ Requires-Dist: dulwich==0.22.1
|
|
23
23
|
Requires-Dist: requests==2.32.3
|
24
24
|
Requires-Dist: pandas<2.3.0,>=1.2.0
|
25
25
|
Requires-Dist: numpy<2.0.0
|
26
|
+
Provides-Extra: grpc
|
27
|
+
Requires-Dist: grpcio==1.66.1; extra == "grpc"
|
28
|
+
Requires-Dist: grpcio-status==1.66.1; extra == "grpc"
|
29
|
+
Provides-Extra: polars
|
30
|
+
Requires-Dist: polars<2.0.0,>=1.0.0; extra == "polars"
|
31
|
+
Provides-Extra: pyspark
|
32
|
+
Requires-Dist: pyspark<3.6.0,>=3.0.0; extra == "pyspark"
|
33
|
+
Provides-Extra: sql
|
34
|
+
Requires-Dist: sqlalchemy<2.1.0,>=2.0.0; extra == "sql"
|
26
35
|
Provides-Extra: aws
|
27
36
|
Requires-Dist: botocore==1.34.93; extra == "aws"
|
28
37
|
Requires-Dist: boto3==1.34.93; extra == "aws"
|
29
|
-
Provides-Extra: azure
|
30
|
-
Requires-Dist: azure-core==1.30.1; extra == "azure"
|
31
|
-
Requires-Dist: azure-identity==1.16.1; extra == "azure"
|
32
|
-
Requires-Dist: azure-storage-blob==12.19.1; extra == "azure"
|
33
|
-
Requires-Dist: adlfs==2024.4.1; extra == "azure"
|
34
38
|
Provides-Extra: gcp
|
35
39
|
Requires-Dist: google-auth==2.34.0; extra == "gcp"
|
36
40
|
Requires-Dist: google-api-core==2.19.2; extra == "gcp"
|
37
41
|
Requires-Dist: google-cloud-storage==2.18.2; extra == "gcp"
|
38
42
|
Requires-Dist: gcsfs==2024.3.1; extra == "gcp"
|
39
|
-
Provides-Extra:
|
40
|
-
Requires-Dist:
|
41
|
-
Requires-Dist:
|
42
|
-
|
43
|
-
Requires-Dist:
|
44
|
-
Provides-Extra: spark
|
45
|
-
Requires-Dist: pyspark<3.6.0,>=3.0.0; extra == "spark"
|
46
|
-
Provides-Extra: sql
|
47
|
-
Requires-Dist: sqlalchemy<2.1.0,>=2.0.0; extra == "sql"
|
43
|
+
Provides-Extra: azure
|
44
|
+
Requires-Dist: azure-core==1.30.1; extra == "azure"
|
45
|
+
Requires-Dist: azure-identity==1.16.1; extra == "azure"
|
46
|
+
Requires-Dist: azure-storage-blob==12.19.1; extra == "azure"
|
47
|
+
Requires-Dist: adlfs==2024.4.1; extra == "azure"
|
48
48
|
|
49
49
|
# TRAC Model Runtime for Python
|
50
50
|
|
@@ -1,29 +1,29 @@
|
|
1
1
|
tracdap/rt/__init__.py,sha256=4aCSENdKNrf9nC1lUULwmHpI1D3K74_4CJzpG_OjA4Q,830
|
2
|
-
tracdap/rt/_version.py,sha256=
|
2
|
+
tracdap/rt/_version.py,sha256=SXkrIUKwRb1wAjRVure-6BZG0rtZMYKogLMGnpib80I,820
|
3
3
|
tracdap/rt/exceptions.py,sha256=PsB4fExDI-bliqJZD-ESrr9MeLPDW7R5VN_JcWg7TqU,8175
|
4
4
|
tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
tracdap/rt/_exec/actors.py,sha256=6jU_yUye7j5TFl1Fz6yxluVbbuN-jO0ShYGtvlzczJM,35144
|
6
|
-
tracdap/rt/_exec/context.py,sha256=
|
7
|
-
tracdap/rt/_exec/dev_mode.py,sha256=
|
8
|
-
tracdap/rt/_exec/engine.py,sha256=
|
9
|
-
tracdap/rt/_exec/functions.py,sha256=
|
10
|
-
tracdap/rt/_exec/graph.py,sha256=
|
11
|
-
tracdap/rt/_exec/graph_builder.py,sha256=
|
12
|
-
tracdap/rt/_exec/runtime.py,sha256
|
6
|
+
tracdap/rt/_exec/context.py,sha256=FAtAVhQk_YXXo4DNUFP9eqnYuT8Vsj_x9GGtBOTNa4Y,43527
|
7
|
+
tracdap/rt/_exec/dev_mode.py,sha256=GvYmeKw2P5bfcYh4_rZPib2E9DjyMctks6GrwGotN3M,42570
|
8
|
+
tracdap/rt/_exec/engine.py,sha256=SZBTdga91l_TZm339XhdQDtV6UyDqJdt7TP-SrRUOuo,42356
|
9
|
+
tracdap/rt/_exec/functions.py,sha256=IMHfnnhZb1mnUFfXngJhcAZ5-9Ify4KNrmKoTGtUWfI,32190
|
10
|
+
tracdap/rt/_exec/graph.py,sha256=t2krBe4fbCLKWkAPGE5zp25N8LewpcFF1ZgxOdMxHxg,12347
|
11
|
+
tracdap/rt/_exec/graph_builder.py,sha256=DEQamSeH4bjFT1N4p9otj8ysdWaM84lbf9SutRwlYt0,47045
|
12
|
+
tracdap/rt/_exec/runtime.py,sha256=_yMKrugsyJmg832fwwQkq5AdogqnKLIzUxReS-DiNIc,16903
|
13
13
|
tracdap/rt/_exec/server.py,sha256=Gx3-5k4fnDMOdYX5T_UwpDbBeOa7HbeKP8GaV5oG60k,12584
|
14
14
|
tracdap/rt/_impl/__init__.py,sha256=nFn00zysNlcEFHQJWs4l6vLm9RS5zsJ_IF9-eRwEXlo,796
|
15
15
|
tracdap/rt/_impl/config_parser.py,sha256=AW10mB1x-MBGH5nMAEo6fyWZ3fDEIOyQiTJZYF0kq4E,23053
|
16
|
-
tracdap/rt/_impl/data.py,sha256=
|
16
|
+
tracdap/rt/_impl/data.py,sha256=3LF9jM1XbQ2WVwcrGjZt4p6WHhbBubJhReSIEFebVIA,45611
|
17
17
|
tracdap/rt/_impl/guard_rails.py,sha256=eixt5hqFuAMmPlzDQyWBXSKDYt12d954qfk-lwkdQmI,11611
|
18
|
-
tracdap/rt/_impl/models.py,sha256=
|
18
|
+
tracdap/rt/_impl/models.py,sha256=hD6zyHUzLEk3WQt1KAQQ8RIlVJk04Xi7sUfG5Iyyd8I,11026
|
19
19
|
tracdap/rt/_impl/repos.py,sha256=66uUN4Jdh9QYd9nPoN3TAAJCcCxDi076abk7_R2mAuY,2250
|
20
20
|
tracdap/rt/_impl/schemas.py,sha256=1oh_GFxZpmdAHu3diC8B5HD3-W5hahwja6LYF2N9m8g,7604
|
21
21
|
tracdap/rt/_impl/shim.py,sha256=NptlbIx9Obxe8_vmiEv1kTxWeUiK4Xktuy6bTx7tlGM,23335
|
22
|
-
tracdap/rt/_impl/static_api.py,sha256=
|
22
|
+
tracdap/rt/_impl/static_api.py,sha256=Luk2Rsn20cjxA4vL4qc5ODMxUnS2K5ZVIR6uaRpbWVI,10928
|
23
23
|
tracdap/rt/_impl/storage.py,sha256=LqJLcFsr2cwDuStcjA15SqaqViJlhynCHflMJM8zde8,35915
|
24
24
|
tracdap/rt/_impl/type_system.py,sha256=tGp0-ordYKeKrSRe0_CzqSHtJnTdK73TtlrxcJsXwtI,12897
|
25
|
-
tracdap/rt/_impl/util.py,sha256=
|
26
|
-
tracdap/rt/_impl/validation.py,sha256=
|
25
|
+
tracdap/rt/_impl/util.py,sha256=iZeZhvuXsuaVeZcmT5AfiwbQedvnxcse1-jq_18XDDw,11439
|
26
|
+
tracdap/rt/_impl/validation.py,sha256=T4jT0ljA5oR1-plVtY7CPD22mGBLrnG4lqYg6PEScC4,23637
|
27
27
|
tracdap/rt/_impl/ext/__init__.py,sha256=7VEb_giQUbvBBO8OSTjTtgFgu7WSA43qslcZvhweO10,795
|
28
28
|
tracdap/rt/_impl/ext/sql.py,sha256=wDlSixuDWErDlDSXo55Ti5gpHXJ5oe75Lsb4ttlrUL0,2938
|
29
29
|
tracdap/rt/_impl/ext/storage.py,sha256=HvMHAT5pE6XhUaUfyeZ7ej8JNz2jYsu0UQAEh0Iqnsw,1763
|
@@ -38,14 +38,14 @@ tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py,sha256=DfHhxxvKU_htkLjUdvsV
|
|
38
38
|
tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi,sha256=_GubsAG9rpuV_QhhXKTDOPeWIpkAkg5jlHkSZxaILak,702
|
39
39
|
tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py,sha256=lpEdZORVyg_y9h-Tg0wMwmASmrJRCt1LtYMb1BbZJIk,5211
|
40
40
|
tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi,sha256=6F7O59tKIXWMFmmCm8zMJQKPQ3hM-fJ8px25Z_ae_Nc,5856
|
41
|
-
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py,sha256=
|
42
|
-
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi,sha256=
|
41
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py,sha256=lKLP3cIzZX3mSdRMmwPBNdYjwunAs-BvzpqK29WJVak,1933
|
42
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi,sha256=3JX6Vcc6cHlLXcihq0R_BDdvLQ2Ubob0XHzZnNCD7as,1385
|
43
43
|
tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py,sha256=GyY4iaqp9wtZ29byMllPmk4o2nosUgdazdqf9KKUg-g,5799
|
44
44
|
tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi,sha256=yCP4usBn7VWxFWdlB6NERiCd0R7BqqmH5k29WdKNk04,5880
|
45
45
|
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py,sha256=QgvJRIEHChOKEVi1xKnCKi1TBrL6KIXoJ0c8whMYaE4,15336
|
46
46
|
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi,sha256=G3wuO76UoPCefzwP-Wmst7Yze6oycs-fPlrO0F7KbF8,18432
|
47
|
-
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=
|
48
|
-
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=
|
47
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=q1VdvKCEslwCxqK6cEb4ABUh32j_veYaVg9WLLdSh2s,7803
|
48
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=rBgvG_L521BbuzMpns3lKr5hOZmVwoHGW1bP2_EI4G0,7826
|
49
49
|
tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py,sha256=cdNa1Byx6jvZPeakr28VrsEkGIj6av1xvdOM1N8NtuE,2933
|
50
50
|
tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi,sha256=vWMjD_CG4ozUBSVsl44kjux-Qr-L_7cLgvQRpuUM7x0,3238
|
51
51
|
tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py,sha256=G5MkYnJ7Nx_US_bjJw4KFtijbHcOHbgb_Bq1VN7hSd0,4378
|
@@ -77,15 +77,16 @@ tracdap/rt/_plugins/storage_gcp.py,sha256=D0ReW2ZZ6IDqRdF-lowL43ceaupmf4tJGo7jvW
|
|
77
77
|
tracdap/rt/_plugins/storage_local.py,sha256=KY1CsT0GzjYWo5YYetTnQDWu18RhVrmEGBrEUSQHPKU,15742
|
78
78
|
tracdap/rt/_plugins/storage_sql.py,sha256=8YmASiu87XAXF7pQr4eBnt8X38DkZabKxI-YnzKpGg8,15897
|
79
79
|
tracdap/rt/_plugins/storage_sql_dialects.py,sha256=4HWx5Gm50TRf5BTmc3hMREJIFsFgqo4g7wkVEVZzPz0,3550
|
80
|
-
tracdap/rt/api/__init__.py,sha256=
|
80
|
+
tracdap/rt/api/__init__.py,sha256=QqbrCINnOe0fP8E1496pCjUHKS2ysTRzis3n6CWCLeI,2105
|
81
81
|
tracdap/rt/api/experimental.py,sha256=f0ELh4Xb2fxawF2yH4xms9rh12cFLjg3I8tEs7IWOpU,7942
|
82
|
-
tracdap/rt/api/
|
83
|
-
tracdap/rt/api/
|
84
|
-
tracdap/rt/api/
|
85
|
-
tracdap/rt/
|
86
|
-
tracdap/rt/config/
|
82
|
+
tracdap/rt/api/file_types.py,sha256=9d8zBI74ALADYKHevGkSnqJlng2Zd4Y7dto4iregnnE,1349
|
83
|
+
tracdap/rt/api/hook.py,sha256=oaVBR3K-A-QHRtBQSHxOVmM0lS2YbDiTHBavUOel0Y8,5054
|
84
|
+
tracdap/rt/api/model_api.py,sha256=ONDU0ocNnejGi2r9nCKTlblqw847Yz4vtGo4M8inc9Q,22435
|
85
|
+
tracdap/rt/api/static_api.py,sha256=XfmWy1dFP3xS7Z4kTtSl8dtAscMF25vfQbHHtpFpvpw,29938
|
86
|
+
tracdap/rt/config/__init__.py,sha256=eNv2xERY9ZYTOwbykvireuCE7zRbgZrchAhceanVnpM,885
|
87
|
+
tracdap/rt/config/common.py,sha256=deB7MBBB0UGkBXiAv-rARBjma2C-61yP8f4xG7aTPZw,1841
|
87
88
|
tracdap/rt/config/job.py,sha256=B-aVIq0vJUY41-vPuIOLIq4A2hdfL9EJN0X9--nGfcI,656
|
88
|
-
tracdap/rt/config/platform.py,sha256=
|
89
|
+
tracdap/rt/config/platform.py,sha256=EQMInXQzHSwpd2paq26umroLi9W_dI9U_4Rzlawo9vg,3313
|
89
90
|
tracdap/rt/config/result.py,sha256=cKFz9ql_6Ru6qj7UP_VJZ2HJORf52dmi1dnK7eBxD-g,612
|
90
91
|
tracdap/rt/config/runtime.py,sha256=ENzEEiAOEmHOgaTVXO9j6WOX6Vv0cVSdYcFxJb_CTnQ,707
|
91
92
|
tracdap/rt/ext/__init__.py,sha256=7VEb_giQUbvBBO8OSTjTtgFgu7WSA43qslcZvhweO10,795
|
@@ -97,15 +98,15 @@ tracdap/rt/ext/storage.py,sha256=O0gvjB2taZpBJ_a3rZfKzh8B1PxUYwPxug6jHNSpm8Q,498
|
|
97
98
|
tracdap/rt/launch/__init__.py,sha256=SPIwj5Bwa-IlhrfY1OJspYnL_mPLvz4F9XTAYKeu6IE,907
|
98
99
|
tracdap/rt/launch/__main__.py,sha256=tfr5wL1gHm0oj4tcX6pv6bl-3Z1K7VMpmmNMQzfMFzU,841
|
99
100
|
tracdap/rt/launch/cli.py,sha256=jGySYBawTDFJrhHgwYnplXb9VPcgfrBVB2UURqx5s-s,2638
|
100
|
-
tracdap/rt/launch/launch.py,sha256=
|
101
|
-
tracdap/rt/metadata/__init__.py,sha256=
|
101
|
+
tracdap/rt/launch/launch.py,sha256=C2ywDuLHr_1xVrYAmO0j1wd22Hq2ge93iFGZkUhgmNc,7796
|
102
|
+
tracdap/rt/metadata/__init__.py,sha256=0FfhA0oiPYIWBpneNn0V6vcLQPCUVSAC159t5lNem28,2059
|
102
103
|
tracdap/rt/metadata/common.py,sha256=J24poYPHSJfORPqqhyJGTAmepdhVaT0V0RblWiW9jCI,1404
|
103
104
|
tracdap/rt/metadata/custom.py,sha256=GhCO8xjjsjZzlfSefqmCFX80rXJnxDCDq_STWi0ZL_0,352
|
104
105
|
tracdap/rt/metadata/data.py,sha256=Hvf1hHks7XQi2zN8TrljGDWmqJ_i_evI-WVik0QLidA,3529
|
105
|
-
tracdap/rt/metadata/file.py,sha256=
|
106
|
+
tracdap/rt/metadata/file.py,sha256=yZenBUoeBATCq1CsIqpC-98HL6MiQdxKBJLR9ukRF7w,544
|
106
107
|
tracdap/rt/metadata/flow.py,sha256=IgZTh62xndAAFG1Y44JORrVKOV7Bd4dEqtWjf1CGeHU,3491
|
107
108
|
tracdap/rt/metadata/job.py,sha256=3nR_TR7_Uj_KDZ_sm5w_RDUvqPVBTg5OXB4M6XnGjh8,5946
|
108
|
-
tracdap/rt/metadata/model.py,sha256=
|
109
|
+
tracdap/rt/metadata/model.py,sha256=bLeAhFtKa9zOAjf5hd1PnJoEZdHqyl0Drskn464dmqA,3761
|
109
110
|
tracdap/rt/metadata/object.py,sha256=pGLLgKTVQZbxU7gZcBQio-M60Pt8LpqyF1Lac7LNKYw,2796
|
110
111
|
tracdap/rt/metadata/object_id.py,sha256=cLzrwFD417GUhc3jw1QihfoSjOKEsXvq-dRY-lXQB0g,4383
|
111
112
|
tracdap/rt/metadata/resource.py,sha256=V6xMOadgzemGvxH7yyhBigRCpg24ZxQPV3WNBvwRcGI,526
|
@@ -114,8 +115,8 @@ tracdap/rt/metadata/stoarge.py,sha256=-WYc3aJskSCF_ETFQDavG3fTck__WPGMOfzWEBv55p
|
|
114
115
|
tracdap/rt/metadata/tag.py,sha256=cjKF5gdNECHDtA9sc09Dc2Q4WNZQA_7iJsUEHSKFXiQ,5097
|
115
116
|
tracdap/rt/metadata/tag_update.py,sha256=I7iDJiHEcSQ2vhOlhIc0fzeOoqTg6N1LJZU1R6tG_8g,3779
|
116
117
|
tracdap/rt/metadata/type.py,sha256=7XOGlLVvxd6DEmKRBYTANBsu9lmxDOsMKE0aNvzsB3M,9568
|
117
|
-
tracdap_runtime-0.
|
118
|
-
tracdap_runtime-0.
|
119
|
-
tracdap_runtime-0.
|
120
|
-
tracdap_runtime-0.
|
121
|
-
tracdap_runtime-0.
|
118
|
+
tracdap_runtime-0.8.0b1.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
119
|
+
tracdap_runtime-0.8.0b1.dist-info/METADATA,sha256=B5O90I_96If41gjR6zIc8X12uiR95y3tMhD5OseWaLQ,5024
|
120
|
+
tracdap_runtime-0.8.0b1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
121
|
+
tracdap_runtime-0.8.0b1.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
|
122
|
+
tracdap_runtime-0.8.0b1.dist-info/RECORD,,
|
File without changes
|
File without changes
|