madsci.node_module 0.4.2__tar.gz → 0.4.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.
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/PKG-INFO +1 -1
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/madsci/node_module/abstract_node_module.py +5 -1
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/pyproject.toml +1 -1
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/README.md +0 -0
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/madsci/node_module/__init__.py +0 -0
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/madsci/node_module/helpers.py +0 -0
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/madsci/node_module/rest_node_module.py +0 -0
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/tests/test_node.py +0 -0
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/tests/test_rest_node_client.py +0 -0
- {madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/tests/test_rest_node_module.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: madsci.node_module
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.3
|
|
4
4
|
Summary: The Modular Autonomous Discovery for Science (MADSci) Node Module Helper Classes.
|
|
5
5
|
Author-Email: Tobias Ginsburg <tginsburg@anl.gov>, "Ryan D. Lewis" <ryan.lewis@anl.gov>, Casey Stone <cstone@anl.gov>, Doga Ozgulbas <dozgulbas@anl.gov>
|
|
6
6
|
License: MIT
|
{madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/madsci/node_module/abstract_node_module.py
RENAMED
|
@@ -118,7 +118,11 @@ class AbstractNode:
|
|
|
118
118
|
self.logger.log_warning(
|
|
119
119
|
f"Node definition file '{node_definition_path}' not found, using default node definition."
|
|
120
120
|
)
|
|
121
|
-
self.node_definition = NodeDefinition(
|
|
121
|
+
self.node_definition = NodeDefinition(
|
|
122
|
+
module_name=self.__class__.__name__,
|
|
123
|
+
node_name=self.__class__.__name__,
|
|
124
|
+
module_version=self.module_version,
|
|
125
|
+
)
|
|
122
126
|
else:
|
|
123
127
|
self.node_definition = NodeDefinition.from_yaml(node_definition_path)
|
|
124
128
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{madsci_node_module-0.4.2 → madsci_node_module-0.4.3}/madsci/node_module/rest_node_module.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|