clarifai-protocol 0.0.18__cp312-cp312-musllinux_1_2_x86_64.whl → 0.0.34__cp312-cp312-musllinux_1_2_x86_64.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.
- {clarifai_protocol-0.0.18.dist-info → clarifai_protocol-0.0.34.dist-info}/METADATA +10 -6
- clarifai_protocol-0.0.34.dist-info/RECORD +8 -0
- clarifai_protocol.cpython-312-x86_64-linux-musl.so +0 -0
- clarifai_protocol.pyi +3 -2
- clarifai_protocol-0.0.18.dist-info/RECORD +0 -8
- {clarifai_protocol-0.0.18.dist-info → clarifai_protocol-0.0.34.dist-info}/WHEEL +0 -0
- {clarifai_protocol-0.0.18.dist-info → clarifai_protocol-0.0.34.dist-info/licenses}/LICENSE +0 -0
- {clarifai_protocol-0.0.18.dist-info → clarifai_protocol-0.0.34.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: clarifai-protocol
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.34
|
|
4
4
|
Summary: Clarifai Python Runner Protocol
|
|
5
5
|
Author-email: Clarifai <support@clarifai.com>
|
|
6
6
|
License: Apache License
|
|
@@ -211,20 +211,24 @@ Keywords: clarifai,runners,python
|
|
|
211
211
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
212
212
|
Classifier: Programming Language :: Python :: 3
|
|
213
213
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
214
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
215
214
|
Classifier: Programming Language :: Python :: 3.9
|
|
216
215
|
Classifier: Programming Language :: Python :: 3.10
|
|
217
216
|
Classifier: Programming Language :: Python :: 3.11
|
|
218
217
|
Classifier: Programming Language :: Python :: 3.12
|
|
218
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
219
219
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
220
220
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
221
221
|
Classifier: Operating System :: OS Independent
|
|
222
|
-
Requires-Python: >=3.
|
|
222
|
+
Requires-Python: >=3.9
|
|
223
223
|
Description-Content-Type: text/markdown
|
|
224
224
|
License-File: LICENSE
|
|
225
|
-
Requires-Dist: clarifai>=11.
|
|
226
|
-
Requires-Dist: clarifai-grpc>=11.
|
|
225
|
+
Requires-Dist: clarifai>=11.7.2
|
|
226
|
+
Requires-Dist: clarifai-grpc>=11.7.8
|
|
227
|
+
Dynamic: license-file
|
|
227
228
|
|
|
228
229
|
# Clarifai Protocol
|
|
229
230
|
|
|
230
231
|
This is a proprietary protocol used by our runners to communicate with our API. This should be installed as part of our python SDK.
|
|
232
|
+
|
|
233
|
+
# Release instructions
|
|
234
|
+
Bump the version in the file VERSION, merge it, pull master, git tag to the same version, push the tag to github to release.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
clarifai_protocol.cpython-312-x86_64-linux-musl.so,sha256=NxmOYfMuBJS-jZpbWqqepe96mE57Fxfn2GmgLPOz2o8,1268280
|
|
2
|
+
clarifai_protocol.pyi,sha256=0U76Jmy9bci3OioLcWj0jNp_SlkWS39rf45zz2BGj_A,775
|
|
3
|
+
clarifai_protocol.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
|
|
4
|
+
clarifai_protocol-0.0.34.dist-info/METADATA,sha256=GxNhCC8R1eK7yt__j01EFaNadZsYpyDEcFQWtMxhzxQ,14363
|
|
5
|
+
clarifai_protocol-0.0.34.dist-info/WHEEL,sha256=wt_uSKkg9OHtOLwYSCsRz3GIKSSE8QSMr_3t0cFLSDs,107
|
|
6
|
+
clarifai_protocol-0.0.34.dist-info/top_level.txt,sha256=qwWV-wytBq70748luF3R1ouCIWiIm2R551LIVXUtpB8,18
|
|
7
|
+
clarifai_protocol-0.0.34.dist-info/RECORD,,
|
|
8
|
+
clarifai_protocol-0.0.34.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
Binary file
|
clarifai_protocol.pyi
CHANGED
|
@@ -11,6 +11,9 @@ __name__ = ...
|
|
|
11
11
|
# Modules used internally, to allow implicit dependencies to be seen:
|
|
12
12
|
import os
|
|
13
13
|
import atexit
|
|
14
|
+
import collections
|
|
15
|
+
import concurrent
|
|
16
|
+
import concurrent.futures
|
|
14
17
|
import itertools
|
|
15
18
|
import signal
|
|
16
19
|
import sys
|
|
@@ -19,8 +22,6 @@ import time
|
|
|
19
22
|
import traceback
|
|
20
23
|
import uuid
|
|
21
24
|
import abc
|
|
22
|
-
import concurrent
|
|
23
|
-
import concurrent.futures
|
|
24
25
|
import concurrent.futures.ThreadPoolExecutor
|
|
25
26
|
import queue
|
|
26
27
|
import typing
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
clarifai_protocol.pyi,sha256=icCuxcS5FV4vAI_OyikiJhxBWHWwtRZ8_Vnsa5vgdhA,756
|
|
2
|
-
clarifai_protocol.cpython-312-x86_64-linux-musl.so,sha256=rSD5Tzj5uqpy4xUFeXK48Mh6mF61c-vb9gdXd1htaRM,1141248
|
|
3
|
-
clarifai_protocol.build/.gitignore,sha256=aEiIwOuxfzdCmLZe4oB1JsBmCUxwG8x-u-HBCV9JT8E,1
|
|
4
|
-
clarifai_protocol-0.0.18.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
|
-
clarifai_protocol-0.0.18.dist-info/WHEEL,sha256=wt_uSKkg9OHtOLwYSCsRz3GIKSSE8QSMr_3t0cFLSDs,107
|
|
6
|
-
clarifai_protocol-0.0.18.dist-info/RECORD,,
|
|
7
|
-
clarifai_protocol-0.0.18.dist-info/top_level.txt,sha256=qwWV-wytBq70748luF3R1ouCIWiIm2R551LIVXUtpB8,18
|
|
8
|
-
clarifai_protocol-0.0.18.dist-info/METADATA,sha256=bIP48MCM0nv9uCfyNTuryxiOUYkmLXvjB1WDWLyKARc,14191
|
|
File without changes
|
|
File without changes
|
|
File without changes
|