Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ dependencies:
- hatchling =1.27.0
- httpcore =1.0.7
- jobflow =0.2.0
- pyiron_base =0.12.0
- pyiron_workflow =0.13.0
- pyiron_base =0.15.5
- pyiron_workflow =0.15.4
- pygraphviz =1.14
- aiida-workgraph =0.7.4
- plumpy =0.25.0
- conda_subprocess =0.0.7
- networkx =3.5
- networkx =3.4.2
- cwltool =3.1.20250110105449
2 changes: 1 addition & 1 deletion example_workflows/quantum_espresso/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ dependencies:
- matplotlib=3.10.1
- xmlschema=3.4.3
- optimade=1.2.3
- qe=7.4
- qe=7.5
- qe-tools=2.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ datecode 220603
<complexType name="symmetriesType">
<sequence>
<element type="unsignedByte" name="nsym"/>
<element type="unsignedByte" name="colin_mag"/>
<element type="integer" name="colin_mag"/>
<element type="unsignedByte" name="nrot"/>
<element type="unsignedByte" name="space_group"/>
<element type="qes:symmetryType" name="symmetry" maxOccurs="48" minOccurs="1"/>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobflow = [
"jobflow>=0.1.18,<=0.2.0",
]
pyiron = [
"pyiron_base>=0.11.10,<=0.12.0",
"pyiron_base>=0.11.10,<=0.15.5",
]
plot = [
"pygraphviz>=1.10,<=1.14",
Expand Down
4 changes: 2 additions & 2 deletions src/python_workflow_definition/pyiron_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,11 @@ def get_dict(**kwargs) -> dict:


def get_list(**kwargs) -> list:
return list(kwargs["kwargs"].values())
return list(kwargs["kwargs"])


def _remove_server_obj(nodes_dict: dict, edges_lst: list):
server_lst = [k for k in nodes_dict.keys() if k.startswith("server_obj_")]
server_lst = [k for k in nodes_dict.keys() if k.startswith("_server_obj_")]
for s in server_lst:
del nodes_dict[s]
edges_lst = [ep for ep in edges_lst if s not in ep]
Expand Down
Loading