omnata-plugin-runtime 0.5.5a126__tar.gz → 0.5.6a128__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/PKG-INFO +2 -1
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/pyproject.toml +2 -1
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/configuration.py +1 -1
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/LICENSE +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/README.md +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: omnata-plugin-runtime
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.6a128
|
4
4
|
Summary: Classes and common runtime components for building and running Omnata Plugins
|
5
5
|
Author: James Weakley
|
6
6
|
Author-email: james.weakley@omnata.com
|
@@ -22,6 +22,7 @@ Requires-Dist: numpy (<=1.26.4)
|
|
22
22
|
Requires-Dist: packaging (<=24.1)
|
23
23
|
Requires-Dist: pandas (<=2.2.2)
|
24
24
|
Requires-Dist: platformdirs (<=3.10.0)
|
25
|
+
Requires-Dist: pyarrow (<=16.1.0)
|
25
26
|
Requires-Dist: pycparser (<=2.21)
|
26
27
|
Requires-Dist: pydantic (>=2,<=2.5.3)
|
27
28
|
Requires-Dist: pydantic-core (<=2.14.6)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.5.
|
3
|
+
version = "0.5.6-a128"
|
4
4
|
description = "Classes and common runtime components for building and running Omnata Plugins"
|
5
5
|
authors = ["James Weakley <james.weakley@omnata.com>"]
|
6
6
|
readme = "README.md"
|
@@ -37,6 +37,7 @@ urllib3 = "<=2.2.2" # latest version available on Snowflake Anaconda
|
|
37
37
|
wheel = "<=0.43.0" # latest version available on Snowflake Anaconda
|
38
38
|
pyyaml = "<=6.0.1" # latest version available on Snowflake Anaconda
|
39
39
|
cffi = "<=1.16.0" # latest version available on Snowflake Anaconda
|
40
|
+
pyarrow = "<=16.1.0" # latest version available on Snowflake Anaconda
|
40
41
|
|
41
42
|
[tool.poetry.dev-dependencies]
|
42
43
|
pytest = "^6.2.4"
|
@@ -256,7 +256,7 @@ class OutboundSyncStrategy(SubscriptableBaseModel, ABC):
|
|
256
256
|
|
257
257
|
@model_serializer(mode='wrap')
|
258
258
|
# no return type hint, see https://github.com/fastapi/fastapi/discussions/10661#discussioncomment-7631104
|
259
|
-
def ser_model(self,handler,info:SerializationInfo)
|
259
|
+
def ser_model(self,handler,info:SerializationInfo):
|
260
260
|
serialized:Dict[str,Any] = handler(self)
|
261
261
|
if not self.custom_strategy and (info.exclude_none is None or info.exclude_none == False):
|
262
262
|
return {k:v for k,v in serialized.items() if k not in [
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.5.5a126 → omnata_plugin_runtime-0.5.6a128}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|