omnata-plugin-runtime 0.3.2__tar.gz → 0.3.3__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.3.2
3
+ Version: 0.3.3
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
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.10
12
12
  Requires-Dist: certifi (<=2023.11.17)
13
13
  Requires-Dist: charset-normalizer (<=2.0.4)
14
14
  Requires-Dist: idna (<=3.4)
15
- Requires-Dist: jinja2 (>=3,<=3.1.2)
15
+ Requires-Dist: jinja2 (>=3.1.2)
16
16
  Requires-Dist: markupsafe (<=2.1.3)
17
17
  Requires-Dist: numpy (<=1.26.3)
18
18
  Requires-Dist: packaging (<=23.1)
@@ -23,9 +23,9 @@ Requires-Dist: pyjwt (<=2.4.0)
23
23
  Requires-Dist: pyopenssl (<=23.2.0)
24
24
  Requires-Dist: pytz (<=2023.3.post1)
25
25
  Requires-Dist: requests (>=2,<=2.31.0)
26
- Requires-Dist: setuptools (<=68.2.2)
26
+ Requires-Dist: setuptools (>=68.2.2)
27
27
  Requires-Dist: snowflake-snowpark-python (>=1,<2)
28
- Requires-Dist: tomlkit (<=0.11.1)
28
+ Requires-Dist: tomlkit (>=0.11.1)
29
29
  Requires-Dist: urllib3 (<=2.1.0)
30
30
  Requires-Dist: wheel (<=0.41.2)
31
31
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.3.2"
3
+ version = "0.3.3"
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
+ # had to relax some of these thanks to snowcli pinning newer versions
12
13
  certifi = "<=2023.11.17" # latest version available on Snowflake Anaconda
13
14
  charset-normalizer = "<=2.0.4" # latest version available on Snowflake Anaconda
14
15
  idna = "<=3.4" # latest version available on Snowflake Anaconda
15
- jinja2 = "^3, <=3.1.2" # latest version available on Snowflake Anaconda
16
+ jinja2 = ">=3.1.2" # 3.1.2 was latest version available on Snowflake Anaconda
16
17
  markupsafe = "<=2.1.3" # latest version available on Snowflake Anaconda
17
18
  numpy = "<=1.26.3" # latest version available on Snowflake Anaconda
18
19
  packaging = "<=23.1" # latest version available on Snowflake Anaconda
@@ -23,8 +24,8 @@ pyjwt = "<=2.4.0" # latest version available on Snowflake Anaconda
23
24
  pyopenssl = "<=23.2.0" # latest version available on Snowflake Anaconda
24
25
  pytz = "<=2023.3.post1" # latest version available on Snowflake Anaconda
25
26
  requests = "^2, <=2.31.0" # latest version available on Snowflake Anaconda
26
- setuptools = "<=68.2.2" # latest version available on Snowflake Anaconda
27
- tomlkit = "<=0.11.1" # latest version available on Snowflake Anaconda
27
+ setuptools = ">=68.2.2" # 68.2.2 was latest version available on Snowflake Anaconda
28
+ tomlkit = ">=0.11.1" # 0.11.1 was latest version available on Snowflake Anaconda
28
29
  urllib3 = "<=2.1.0" # latest version available on Snowflake Anaconda
29
30
  wheel = "<=0.41.2" # latest version available on Snowflake Anaconda
30
31