omnata-plugin-runtime 0.2.94__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.94
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: jinja2 (>=3,<4)
12
+ Requires-Dist: certifi (<=2023.11.17)
13
+ Requires-Dist: charset-normalizer (<=2.0.4)
14
+ Requires-Dist: jinja2 (>=3,<=3.1.2)
13
15
  Requires-Dist: numpy (<=1.26.3)
14
- Requires-Dist: pandas
15
- Requires-Dist: pydantic (>=1,<2)
16
- Requires-Dist: requests (>=2,<3)
16
+ Requires-Dist: packaging (<=23.1)
17
+ Requires-Dist: pandas (<=2.1.4)
18
+ Requires-Dist: platformdirs (<=3.10.0)
19
+ Requires-Dist: pydantic (>=1,<=1.10.12)
20
+ Requires-Dist: pyjwt (<=2.4.0)
21
+ Requires-Dist: pytz (<=2023.3.post1)
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
@@ -0,0 +1,37 @@
1
+ [tool.poetry]
2
+ name = "omnata-plugin-runtime"
3
+ version = "0.2.96"
4
+ description = "Classes and common runtime components for building and running Omnata Plugins"
5
+ authors = ["James Weakley <james.weakley@omnata.com>"]
6
+ readme = "README.md"
7
+ packages = [{include = "omnata_plugin_runtime", from = "src"}]
8
+
9
+ [tool.poetry.dependencies]
10
+ python = ">=3.8, <3.11"
11
+ snowflake-snowpark-python = "^1"
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
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
26
+
27
+ [tool.poetry.dev-dependencies]
28
+ pytest = "^6.2.4"
29
+ deepdiff = "^6"
30
+
31
+ [tool.pytest.ini_options]
32
+ addopts = ["--import-mode=importlib"]
33
+ testpaths = ["tests"]
34
+
35
+ [build-system]
36
+ requires = ["poetry-core"]
37
+ build-backend = "poetry.core.masonry.api"
@@ -1,28 +0,0 @@
1
- [tool.poetry]
2
- name = "omnata-plugin-runtime"
3
- version = "0.2.94"
4
- description = "Classes and common runtime components for building and running Omnata Plugins"
5
- authors = ["James Weakley <james.weakley@omnata.com>"]
6
- readme = "README.md"
7
- packages = [{include = "omnata_plugin_runtime", from = "src"}]
8
-
9
- [tool.poetry.dependencies]
10
- python = ">=3.8, <3.11"
11
- snowflake-snowpark-python = "^1"
12
- pandas = "*"
13
- numpy = "<=1.26.3" # latest version available on Snowflake Anaconda
14
- pydantic = "^1"
15
- jinja2 = "^3"
16
- requests = "^2"
17
-
18
- [tool.poetry.dev-dependencies]
19
- pytest = "^6.2.4"
20
- deepdiff = "^6"
21
-
22
- [tool.pytest.ini_options]
23
- addopts = ["--import-mode=importlib"]
24
- testpaths = ["tests"]
25
-
26
- [build-system]
27
- requires = ["poetry-core"]
28
- build-backend = "poetry.core.masonry.api"