Skip to content

Commit

Permalink
Fix metadata keyword typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
csadorf committed Mar 14, 2019
1 parent 81e3ad2 commit 567f459
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .sync-zenodo-metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def sync(ctx, in_place=False, check=True):
zenodo_updated['creators'] = [a.as_zenodo_creator() for a in authors]
zenodo_updated['contributors'] = [c.as_zenodo_creator()
for c in contributors if c not in authors]
zenodo_updated['version'] = citation['version']
for key in ('version', 'keywords'):
zenodo_updated[key] = citation[key]

modified = json.dumps(zenodo, sort_keys=True) != json.dumps(zenodo_updated, sort_keys=True)
if modified:
Expand Down
3 changes: 2 additions & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@
"description": "The signac-flow tool provides the basic components to set up simple to complex workflows for projects as part of the signac framework. That includes the definition of data pipelines, execution of data space operations and the submission of operations to high-performance super computers.",
"keywords": [
"python",
"data management",
"reproducibility",
"sharability",
"shareability",
"workflow",
"scientific computing"
],
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ keywords:
- python
- "data management"
- reproducibility
- sharebility
- shareability
- workflow
- "scientific computing"
license: "http://www.opensource.org/licenses/BSD-3-Clause"
Expand Down

0 comments on commit 567f459

Please sign in to comment.