omnata-plugin-runtime 0.6.2a167__tar.gz → 0.6.2a168__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/omnata_plugin.py +2 -2
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/LICENSE +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/README.md +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "omnata-plugin-runtime"
|
3
|
-
version = "0.6.2-
|
3
|
+
version = "0.6.2-a168"
|
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"
|
@@ -2397,7 +2397,7 @@ def find_udtf_classes(path:str = '.') -> List[UDTFDefinition]:
|
|
2397
2397
|
matching_classes = []
|
2398
2398
|
|
2399
2399
|
# Iterate over all modules in the current directory
|
2400
|
-
for importer, module_name, ispkg in pkgutil.walk_packages(path=[
|
2400
|
+
for importer, module_name, ispkg in pkgutil.walk_packages(path=[current_dir]):
|
2401
2401
|
# Import the module
|
2402
2402
|
module = importlib.import_module(module_name)
|
2403
2403
|
|
@@ -2512,7 +2512,7 @@ def find_udf_functions(path:str = '.') -> List[UDFDefinition]:
|
|
2512
2512
|
matching_classes = []
|
2513
2513
|
|
2514
2514
|
# Iterate over all modules in the current directory
|
2515
|
-
for importer, module_name, ispkg in pkgutil.walk_packages(path=[
|
2515
|
+
for importer, module_name, ispkg in pkgutil.walk_packages(path=[current_dir]):
|
2516
2516
|
# Import the module
|
2517
2517
|
module = importlib.import_module(module_name)
|
2518
2518
|
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.2a167 → omnata_plugin_runtime-0.6.2a168}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|