Skip to content

Commit b1266b7

Browse files
authored
pyiron_base update to 0.15.5 (#135)
* Update pyproject.toml * Update environment.yml * Update environment.yml * Update environment.yml * Update pyiron_base.py * Update environment.yml * Update environment.yml * Update pyiron_base.py * test with latest version * Update environment.yml * Add files via upload
1 parent 245fdc0 commit b1266b7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

binder/environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ dependencies:
77
- hatchling =1.27.0
88
- httpcore =1.0.7
99
- jobflow =0.2.0
10-
- pyiron_base =0.12.0
11-
- pyiron_workflow =0.13.0
10+
- pyiron_base =0.15.5
11+
- pyiron_workflow =0.15.4
1212
- pygraphviz =1.14
1313
- aiida-workgraph =0.7.4
1414
- plumpy =0.25.0
1515
- conda_subprocess =0.0.7
16-
- networkx =3.5
16+
- networkx =3.4.2
1717
- cwltool =3.1.20250110105449

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobflow = [
2828
"jobflow>=0.1.18,<=0.2.0",
2929
]
3030
pyiron = [
31-
"pyiron_base>=0.11.10,<=0.12.0",
31+
"pyiron_base>=0.11.10,<=0.15.5",
3232
]
3333
plot = [
3434
"pygraphviz>=1.10,<=1.14",

src/python_workflow_definition/pyiron_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ def get_dict(**kwargs) -> dict:
9898

9999

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

103103

104104
def _remove_server_obj(nodes_dict: dict, edges_lst: list):
105-
server_lst = [k for k in nodes_dict.keys() if k.startswith("server_obj_")]
105+
server_lst = [k for k in nodes_dict.keys() if k.startswith("_server_obj_")]
106106
for s in server_lst:
107107
del nodes_dict[s]
108108
edges_lst = [ep for ep in edges_lst if s not in ep]

0 commit comments

Comments
 (0)