causing 2.4.3__tar.gz → 2.4.4__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.

Potentially problematic release.


This version of causing might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: causing
3
- Version: 2.4.3
3
+ Version: 2.4.4
4
4
  Summary: Causing: CAUSal INterpretation using Graphs
5
5
  Home-page: https://github.com/realrate/Causing
6
6
  Author: Dr. Holger Bartel
@@ -193,6 +193,10 @@ def create_graphs(graphs: Iterable[networkx.DiGraph], output_dir: Path, **kwargs
193
193
  print("Create", filename)
194
194
  dot_str = graph_to_dot(g, **kwargs)
195
195
  save_graph(output_dir / filename, dot_str)
196
+ # save the dot string
197
+ dot_path = output_dir / f"IME_{g.graph['id']}.dot"
198
+ with open(dot_path, "w") as f:
199
+ f.write(dot_str)
196
200
 
197
201
 
198
202
  def remove_node_keep_edges(graph, node):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: causing
3
- Version: 2.4.3
3
+ Version: 2.4.4
4
4
  Summary: Causing: CAUSal INterpretation using Graphs
5
5
  Home-page: https://github.com/realrate/Causing
6
6
  Author: Dr. Holger Bartel
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="causing",
8
- version="2.4.3",
8
+ version="2.4.4",
9
9
  author="Dr. Holger Bartel",
10
10
  author_email="holger.bartel@realrate.ai",
11
11
  description="Causing: CAUSal INterpretation using Graphs",
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