aiidateam / aiida-common-workflows

A repository for the implementation of common workflow interfaces across materials-science codes and plugins
https://aiida-common-workflows.readthedocs.io
MIT License
52 stars 32 forks source link

Fix: Set common inputs to `non_db` #339

Closed t-reents closed 2 weeks ago

t-reents commented 2 weeks ago

After setting to_aiida_type as the default serializer in aiida-core 2.6, the common workflows would fail. The common inputs expect Pyhton data types instead of their corresponding AiiDA data types. Instead of adding the corresponding AiiDA data types as valid types, I set non_db = True for the common inputs, since the inputs were not stored in the database before, anyway.