omnata-plugin-runtime 0.6.5__tar.gz → 0.6.6__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/PKG-INFO +3 -3
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/pyproject.toml +3 -3
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/LICENSE +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/README.md +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/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.6.
|
3
|
+
Version: 0.6.6
|
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
|
@@ -18,7 +18,7 @@ Requires-Dist: filelock (<=3.13.1)
|
|
18
18
|
Requires-Dist: idna (<=3.7)
|
19
19
|
Requires-Dist: jinja2 (>=3.1.2,<=3.1.4)
|
20
20
|
Requires-Dist: markupsafe (<=2.1.3)
|
21
|
-
Requires-Dist: numpy (
|
21
|
+
Requires-Dist: numpy (<1.27.0)
|
22
22
|
Requires-Dist: packaging (<=24.1)
|
23
23
|
Requires-Dist: pandas (<=2.2.2)
|
24
24
|
Requires-Dist: platformdirs (<=3.10.0)
|
@@ -30,7 +30,7 @@ Requires-Dist: pyjwt (<=2.8.0)
|
|
30
30
|
Requires-Dist: pyopenssl (<=24.2.1)
|
31
31
|
Requires-Dist: pytz (<=2024.1)
|
32
32
|
Requires-Dist: pyyaml (<=6.0.1)
|
33
|
-
Requires-Dist: requests (>=2,<=2.32.
|
33
|
+
Requires-Dist: requests (>=2,<=2.32.3)
|
34
34
|
Requires-Dist: setuptools (<=72.1.0)
|
35
35
|
Requires-Dist: snowflake-connector-python (>=3,<=3.12.0)
|
36
36
|
Requires-Dist: snowflake-snowpark-python (==1.19.0)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.6.
|
3
|
+
version = "0.6.6"
|
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"
|
@@ -21,7 +21,7 @@ charset-normalizer = "<=3.3.2" # latest version available on Snowflake Anaconda
|
|
21
21
|
idna = "<=3.7" # latest version available on Snowflake Anaconda
|
22
22
|
jinja2 = ">=3.1.2,<=3.1.4" # 3.1.4 was latest version available on Snowflake Anaconda
|
23
23
|
markupsafe = "<=2.1.3" # latest version available on Snowflake Anaconda
|
24
|
-
numpy = "
|
24
|
+
numpy = "<1.27.0" # To match compatibility with snowflake-connector-python
|
25
25
|
packaging = "<=24.1" # latest version available on Snowflake Anaconda
|
26
26
|
pandas = "<=2.2.2" # latest version available on Snowflake Anaconda
|
27
27
|
platformdirs = "<=3.10.0" # latest version available on Snowflake Anaconda
|
@@ -29,7 +29,7 @@ pydantic = "^2, <=2.8.2" # latest version available on Snowflake Anaconda
|
|
29
29
|
pyjwt = "<=2.8.0" # latest version available on Snowflake Anaconda
|
30
30
|
pyopenssl = "<=24.2.1" # latest version available on Snowflake Anaconda
|
31
31
|
pytz = "<=2024.1" # latest version available on Snowflake Anaconda
|
32
|
-
requests = "^2, <=2.32.
|
32
|
+
requests = "^2, <=2.32.3" # latest version available on Snowflake Anaconda
|
33
33
|
setuptools = "<=72.1.0" # latest version available on Snowflake Anaconda
|
34
34
|
tomlkit = "<=0.11.1" # latest version available on Snowflake Anaconda
|
35
35
|
tenacity = "^8, <=8.2.3" # latest version available on Snowflake Anaconda
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/__init__.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.6.5 → omnata_plugin_runtime-0.6.6}/src/omnata_plugin_runtime/logging.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|