Skip to content

Commit

Permalink
Merge pull request #117 from aiidateam/release/1.2.1
Browse files Browse the repository at this point in the history
Prepare release 1.2.1
  • Loading branch information
yakutovicha authored Oct 21, 2020
2 parents 0c3c3aa + 031ecca commit 3aec461
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aiida_cp2k/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
###############################################################################
"""AiiDA-CP2K plugins, parsers, workflows, etc ..."""

__version__ = "1.2.0"
__version__ = "1.2.1"

# EOF
2 changes: 1 addition & 1 deletion aiida_cp2k/workchains/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def resubmit_unconverged_geometry(self, calc):
params = add_restart_sections(params)

# If not all the restart keys are present, adding them to the input dictionary
except KeyError:
except (AttributeError, KeyError):
params = add_restart_sections(params)

# Might be able to solve the problem
Expand Down
2 changes: 1 addition & 1 deletion setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
"license": "MIT License",
"name": "aiida_cp2k",
"url": "https://github.com/aiidateam/aiida-cp2k",
"version": "1.2.0"
"version": "1.2.1"
}

0 comments on commit 3aec461

Please sign in to comment.