File tree Expand file tree Collapse file tree 4 files changed +68
-6
lines changed
src/distributed_downloader/core Expand file tree Collapse file tree 4 files changed +68
-6
lines changed Original file line number Diff line number Diff line change 1+ name : Check zenodo metadata
2+
3+ on :
4+ push :
5+ paths :
6+ - ' .zenodo.json'
7+ - ' .github/workflows/validate-zenodo.yaml'
8+
9+ jobs :
10+ check-zenodo-metadata :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v4
16+ - uses : actions/setup-node@v4
17+ with :
18+ node-version : ' 22'
19+ - name : Install dependencies
20+ run : npm install zenodraft@0.14.1
21+ - name : Check .zenodo.json file
22+ run : |
23+ npx zenodraft metadata validate .zenodo.json
Original file line number Diff line number Diff line change 1+ {
2+ "creators" : [
3+ {
4+ "name" : " Kopanev, Andrei" ,
5+ "affiliation" : " The Ohio State University"
6+ },
7+ {
8+ "name" : " Thompson, Matthew J." ,
9+ "orcid" : " 0000-0003-0583-8585" ,
10+ "affiliation" : " The Ohio State University"
11+ },
12+ {
13+ "name" : " Campolongo, Elizabeth G." ,
14+ "orcid" : " 0000-0003-0846-2413" ,
15+ "affiliation" : " The Ohio State University"
16+ }
17+ ],
18+ "description" : " MPI-based distributed downloading tool for retrieving data from diverse domains." ,
19+ "keywords" : [
20+ " parallel" ,
21+ " distributed" ,
22+ " download" ,
23+ " url" ,
24+ " dataset generation" ,
25+ " MPI application"
26+ ],
27+ "license" : {
28+ "id" : " MIT"
29+ },
30+ "publication_date" : " 2025-10-22" ,
31+ "title" : " Distributed-downloader" ,
32+ "version" : " 0.3.0-beta" ,
33+ "grants" : [
34+ {
35+ "id" : " 021nxhr62::2118240"
36+ }
37+ ]
38+ }
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ authors:
2424 orcid : ' https://orcid.org/0000-0003-0846-2413'
2525repository-code : ' https://github.com/Imageomics/distributed-downloader'
2626identifiers :
27- - description : " The GitHub release URL of tag v0.2 .0-beta."
27+ - description : " The GitHub release URL of tag v0.3 .0-beta."
2828 type : url
29- value : " https://github.com/Imageomics/distributed-downloader/releases/tag/v0.2 .0-beta"
30- - description : " The GitHub URL of the commit tagged with v0.2 .0-beta."
29+ value : " https://github.com/Imageomics/distributed-downloader/releases/tag/v0.3 .0-beta"
30+ - description : " The GitHub URL of the commit tagged with v0.3 .0-beta."
3131 type : url
3232 value : " https://github.com/Imageomics/distributed-downloader/tree/<commit-hash>" # update post release
3333abstract : >-
@@ -41,5 +41,6 @@ keywords:
4141 - " dataset generation"
4242 - " MPI application"
4343license : MIT
44- version : 0.2.0-beta
45- date-released : ' 2025-04-17'
44+ version : 0.3.0-beta
45+ date-released : ' 2025-10-22'
46+ doi : # to be added post-release
Original file line number Diff line number Diff line change 1- __version__ = "0.2 .0-beta"
1+ __version__ = "0.3 .0-beta"
You can’t perform that action at this time.
0 commit comments