omnata-plugin-runtime 0.2.93__tar.gz → 0.2.95__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.93
3
+ Version: 0.2.95
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,10 +9,11 @@ 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: jinja2 (>=3,<4)
13
- Requires-Dist: pandas
14
- Requires-Dist: pydantic (>=1,<2)
15
- Requires-Dist: requests (>=2,<3)
12
+ Requires-Dist: jinja2 (>=3,<=3.1.2)
13
+ Requires-Dist: numpy (<=1.26.3)
14
+ Requires-Dist: pandas (<=2.1.4)
15
+ Requires-Dist: pydantic (>=1,<=1.10.12)
16
+ Requires-Dist: requests (>=2,<=2.31.0)
16
17
  Requires-Dist: snowflake-snowpark-python (>=1,<2)
17
18
  Description-Content-Type: text/markdown
18
19
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.2.93"
3
+ version = "0.2.95"
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"
@@ -9,10 +9,11 @@ packages = [{include = "omnata_plugin_runtime", from = "src"}]
9
9
  [tool.poetry.dependencies]
10
10
  python = ">=3.8, <3.11"
11
11
  snowflake-snowpark-python = "^1"
12
- pandas = "*"
13
- pydantic = "^1"
14
- jinja2 = "^3"
15
- requests = "^2"
12
+ pandas = "<=2.1.4" # latest version available on Snowflake Anaconda
13
+ numpy = "<=1.26.3" # latest version available on Snowflake Anaconda
14
+ pydantic = "^1, <=1.10.12" # latest version available on Snowflake Anaconda
15
+ jinja2 = "^3, <=3.1.2" # latest version available on Snowflake Anaconda
16
+ requests = "^2, <=2.31.0" # latest version available on Snowflake Anaconda
16
17
 
17
18
  [tool.poetry.dev-dependencies]
18
19
  pytest = "^6.2.4"