oocana-python-executor 0.16.9__tar.gz → 0.16.10__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.
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/PKG-INFO +1 -1
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/pyproject.toml +1 -1
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/context.py +12 -1
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/__init__.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/block.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/data.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/executor.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/hook.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/logger.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/matplot/matplotlib_oomol/__init__.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/matplot/matplotlib_oomol/oomol.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/matplot/oomol_matplot_helper.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/secret.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/service.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/topic.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/utils.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/tests/test_cli.py +0 -0
- {oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/tests/test_secret.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: oocana-python-executor
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.10
|
|
4
4
|
Summary: a client subscribe mqtt topic to execute oocana's block
|
|
5
5
|
Author-Email: l1shen <lishen1635@gmail.com>, yleaf <11785335+leavesster@users.noreply.github.com>
|
|
6
6
|
License: MIT
|
|
@@ -59,7 +59,18 @@ def createContext(
|
|
|
59
59
|
|
|
60
60
|
blockInfo = BlockInfo(**node_props)
|
|
61
61
|
|
|
62
|
-
ctx = Context(
|
|
62
|
+
ctx = Context(
|
|
63
|
+
inputs=inputs,
|
|
64
|
+
inputs_def=inputs_def,
|
|
65
|
+
blockInfo=blockInfo,
|
|
66
|
+
mainframe=mainframe,
|
|
67
|
+
store=store,
|
|
68
|
+
outputs_def=output,
|
|
69
|
+
session_dir=session_dir,
|
|
70
|
+
tmp_dir=tmp_dir,
|
|
71
|
+
package_name=package_name,
|
|
72
|
+
pkg_dir=pkg_dir
|
|
73
|
+
)
|
|
63
74
|
# 跟 executor 日志分开,避免有的库在 logger 里面使用 print,导致 hook 出现递归调用。
|
|
64
75
|
block_logger = logging.getLogger(f"block {job_id}")
|
|
65
76
|
ctx_handler = ContextHandler(ctx)
|
{oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{oocana_python_executor-0.16.9 → oocana_python_executor-0.16.10}/python_executor/executor.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|