Skip to content

Commit be57c5d

Browse files
authored
closes #165. Added missing name attribute on the output edges (#166)
1 parent 7cf1a78 commit be57c5d

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Mass_Composition 0.6.4 (2024-05-16)
2+
===================================
3+
4+
Bugfix
5+
------
6+
7+
- Added missing name attribute on the output edges. (#165)
8+
9+
110
Mass_Composition 0.6.3 (2024-05-16)
211
===================================
312

elphick/mass_composition/dag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def add_output(self, name: str, stream: str) -> 'DAG':
8383
if parent_node is None:
8484
raise ValueError(f"No parent node found for stream {stream}")
8585
self.graph.add_node(name, operation=DAG.output, dependencies=[stream], kwargs=None, defined=True, name=name)
86-
self.graph.add_edge(parent_node, name)
86+
self.graph.add_edge(parent_node, name, name=stream)
8787
return self
8888

8989
def _topological_sort(self) -> List[str]:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mass-composition"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
description = "For managing multi-dimensional mass-composition datasets, supporting weighted mathematical operations and visualisation."
55
authors = ["Greg <greg@elphick.com.au>"]
66
packages = [{ include = "elphick/mass_composition" }]

0 commit comments

Comments
 (0)