omnata-plugin-runtime 0.6.4a171__tar.gz → 0.6.5a172__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/PKG-INFO +9 -9
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/pyproject.toml +10 -10
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/LICENSE +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/README.md +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/src/omnata_plugin_runtime/omnata_plugin.py +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/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.5a172
|
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
|
@@ -10,28 +10,28 @@ Classifier: Programming Language :: Python :: 3.8
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.9
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
12
12
|
Requires-Dist: annotated-types (<=0.6.0)
|
13
|
-
Requires-Dist: certifi (<=2024.
|
13
|
+
Requires-Dist: certifi (<=2024.8.30)
|
14
14
|
Requires-Dist: cffi (<=1.16.0)
|
15
|
-
Requires-Dist: charset-normalizer (<=
|
16
|
-
Requires-Dist: cryptography (<=
|
15
|
+
Requires-Dist: charset-normalizer (<=3.3.2)
|
16
|
+
Requires-Dist: cryptography (<=43.0.0)
|
17
17
|
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 (<=2.0.1)
|
22
22
|
Requires-Dist: packaging (<=24.1)
|
23
23
|
Requires-Dist: pandas (<=2.2.2)
|
24
24
|
Requires-Dist: platformdirs (<=3.10.0)
|
25
25
|
Requires-Dist: pyarrow (<=16.1.0)
|
26
26
|
Requires-Dist: pycparser (<=2.21)
|
27
|
-
Requires-Dist: pydantic (>=2,<=2.
|
28
|
-
Requires-Dist: pydantic-core (<=2.
|
27
|
+
Requires-Dist: pydantic (>=2,<=2.8.2)
|
28
|
+
Requires-Dist: pydantic-core (<=2.21.0)
|
29
29
|
Requires-Dist: pyjwt (<=2.8.0)
|
30
|
-
Requires-Dist: pyopenssl (<=24.
|
30
|
+
Requires-Dist: pyopenssl (<=24.2.1)
|
31
31
|
Requires-Dist: pytz (<=2024.1)
|
32
32
|
Requires-Dist: pyyaml (<=6.0.1)
|
33
33
|
Requires-Dist: requests (>=2,<=2.32.2)
|
34
|
-
Requires-Dist: setuptools (<=
|
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)
|
37
37
|
Requires-Dist: tenacity (>=8,<=8.2.3)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.6.
|
3
|
+
version = "0.6.5-a172"
|
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"
|
@@ -10,28 +10,28 @@ packages = [{include = "omnata_plugin_runtime", from = "src"}]
|
|
10
10
|
python = ">=3.8, <3.11"
|
11
11
|
snowflake-snowpark-python = "1.19.0" # fixes an issue
|
12
12
|
snowflake-connector-python = "^3, <=3.12.0" # latest version available on Snowflake Anaconda
|
13
|
-
cryptography = "<=
|
13
|
+
cryptography = "<=43.0.0"
|
14
14
|
annotated-types = "<=0.6.0"
|
15
15
|
pycparser = "<=2.21"
|
16
16
|
filelock = "<=3.13.1"
|
17
|
-
pydantic-core = "<=2.
|
17
|
+
pydantic-core = "<=2.21.0"
|
18
18
|
# had to relax some of these thanks to snowcli pinning newer versions
|
19
|
-
certifi = "<=2024.
|
20
|
-
charset-normalizer = "<=
|
19
|
+
certifi = "<=2024.8.30" # latest version available on Snowflake Anaconda
|
20
|
+
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 = "<=2.0.1" # latest version available on Snowflake Anaconda
|
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
|
28
|
-
pydantic = "^2, <=2.
|
28
|
+
pydantic = "^2, <=2.8.2" # latest version available on Snowflake Anaconda
|
29
29
|
pyjwt = "<=2.8.0" # latest version available on Snowflake Anaconda
|
30
|
-
pyopenssl = "<=24.
|
30
|
+
pyopenssl = "<=24.2.1" # latest version available on Snowflake Anaconda
|
31
31
|
pytz = "<=2024.1" # latest version available on Snowflake Anaconda
|
32
32
|
requests = "^2, <=2.32.2" # latest version available on Snowflake Anaconda
|
33
|
-
setuptools = "<=
|
34
|
-
tomlkit = "<=0.11.1" #
|
33
|
+
setuptools = "<=72.1.0" # latest version available on Snowflake Anaconda
|
34
|
+
tomlkit = "<=0.11.1" # latest version available on Snowflake Anaconda
|
35
35
|
tenacity = "^8, <=8.2.3" # latest version available on Snowflake Anaconda
|
36
36
|
urllib3 = "<=2.2.2" # latest version available on Snowflake Anaconda
|
37
37
|
wheel = "<=0.43.0" # latest version available on Snowflake Anaconda
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.4a171 → omnata_plugin_runtime-0.6.5a172}/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
|
File without changes
|