omnata-plugin-runtime 0.5.7a154__tar.gz → 0.5.7a155__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.5.7a154
3
+ Version: 0.5.7a155
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
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.5.7-a154"
3
+ version = "0.5.7-a155"
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"
@@ -2416,7 +2416,9 @@ def find_udtf_classes(path:str = '.') -> List[UDTFDefinition]:
2416
2416
  if hasattr(obj, '_is_omnata_udtf'):
2417
2417
  matching_classes.append(UDTFDefinition(
2418
2418
  name=obj._omnata_udtf_name,
2419
-
2419
+ language='python',
2420
+ runtime_version='3.10',
2421
+ imports=['/app.zip'],
2420
2422
  description=obj._omnata_udtf_description,
2421
2423
  params=obj._omnata_udtf_params,
2422
2424
  result_columns=obj._omnata_udtf_result_columns,