omnata-plugin-runtime 0.2.95__tar.gz → 0.2.96__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.2.95
3
+ Version: 0.2.96
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
@@ -9,12 +9,21 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.8
10
10
  Classifier: Programming Language :: Python :: 3.9
11
11
  Classifier: Programming Language :: Python :: 3.10
12
+ Requires-Dist: certifi (<=2023.11.17)
13
+ Requires-Dist: charset-normalizer (<=2.0.4)
12
14
  Requires-Dist: jinja2 (>=3,<=3.1.2)
13
15
  Requires-Dist: numpy (<=1.26.3)
16
+ Requires-Dist: packaging (<=23.1)
14
17
  Requires-Dist: pandas (<=2.1.4)
18
+ Requires-Dist: platformdirs (<=3.10.0)
15
19
  Requires-Dist: pydantic (>=1,<=1.10.12)
20
+ Requires-Dist: pyjwt (<=2.4.0)
21
+ Requires-Dist: pytz (<=2023.3.post1)
16
22
  Requires-Dist: requests (>=2,<=2.31.0)
17
23
  Requires-Dist: snowflake-snowpark-python (>=1,<2)
24
+ Requires-Dist: tomlkit (<=0.11.1)
25
+ Requires-Dist: urllib3 (<=2.1.0)
26
+ Requires-Dist: wheel (<=0.41.2)
18
27
  Description-Content-Type: text/markdown
19
28
 
20
29
  # omnata-plugin-runtime
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.2.95"
3
+ version = "0.2.96"
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"
@@ -14,6 +14,15 @@ numpy = "<=1.26.3" # latest version available on Snowflake Anaconda
14
14
  pydantic = "^1, <=1.10.12" # latest version available on Snowflake Anaconda
15
15
  jinja2 = "^3, <=3.1.2" # latest version available on Snowflake Anaconda
16
16
  requests = "^2, <=2.31.0" # latest version available on Snowflake Anaconda
17
+ urllib3 = "<=2.1.0" # latest version available on Snowflake Anaconda
18
+ charset-normalizer = "<=2.0.4" # latest version available on Snowflake Anaconda
19
+ tomlkit = "<=0.11.1" # latest version available on Snowflake Anaconda
20
+ packaging = "<=23.1" # latest version available on Snowflake Anaconda
21
+ platformdirs = "<=3.10.0" # latest version available on Snowflake Anaconda
22
+ pytz = "<=2023.3.post1" # latest version available on Snowflake Anaconda
23
+ pyjwt = "<=2.4.0" # latest version available on Snowflake Anaconda
24
+ certifi = "<=2023.11.17" # latest version available on Snowflake Anaconda
25
+ wheel = "<=0.41.2" # latest version available on Snowflake Anaconda
17
26
 
18
27
  [tool.poetry.dev-dependencies]
19
28
  pytest = "^6.2.4"