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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: madsci.node_module
3
- Version: 0.4.2
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
@@ -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
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "madsci.node_module"
3
- version = "0.4.2"
3
+ version = "0.4.3"
4
4
  description = "The Modular Autonomous Discovery for Science (MADSci) Node Module Helper Classes."
5
5
  authors = [
6
6
  { name = "Tobias Ginsburg", email = "tginsburg@anl.gov" },