Skip to content

Commit df5177c

Browse files
authored
Merge branch 'main' into aiida-pythonjob
2 parents 2c250a8 + d659066 commit df5177c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ channels:
22
- conda-forge
33
dependencies:
44
- python=3.12
5-
- pyiron_base=0.11.7
5+
- pyiron_base=0.11.8
66
- qe=7.2
77
- qe-tools=2.0.0
88
- ase=3.24.0

quantum_espresso_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def write_input(input_dict, working_directory="."):
3131
def collect_output(working_directory="."):
3232
output = parse_pw(os.path.join(working_directory, "pwscf.xml"))
3333
return {
34-
"structure": atoms_to_json_dict(output["ase_structure"]),
34+
"structure": atoms_to_json_dict(atoms=output["ase_structure"]),
3535
"energy": output["energy"],
3636
"volume": output["ase_structure"].get_volume(),
3737
}

0 commit comments

Comments
 (0)