Skip to content

Commit

Permalink
Post release: add the .post0 qualifier to version attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
sphuber committed May 23, 2023
1 parent 89f1076 commit 4cfd6d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiida/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
'For further information please visit http://www.aiida.net/. All rights reserved.'
)
__license__ = 'MIT license, see LICENSE.txt file.'
__version__ = '2.3.1'
__version__ = '2.3.1.post0'
__authors__ = 'The AiiDA team.'
__paper__ = (
'S. P. Huber et al., "AiiDA 1.0, a scalable computational infrastructure for automated reproducible workflows and '
Expand Down
2 changes: 1 addition & 1 deletion aiida/orm/utils/serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def serialize(data: Any, encoding: str | None = None) -> str | bytes:
if encoding is not None:
serialized = yaml.dump(data, encoding=encoding, Dumper=AiiDADumper)
else:
serialized = yaml.dump(data, Dumper=AiiDADumper) # type: ignore[assignment]
serialized = yaml.dump(data, Dumper=AiiDADumper)

return serialized

Expand Down

0 comments on commit 4cfd6d7

Please sign in to comment.