File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -57,17 +57,18 @@ jobs:
5757 cache = Path(pooch.os_cache("openfe_analysis"))
5858 cache.mkdir(parents=True, exist_ok=True)
5959
60- # Files to download: direct Zenodo URLs + MD5 hashes
60+ # Files to download: Zenodo API 'content' URLs + MD5 hashes
6161 files = {
6262 "openfe_analysis_simulation_output.tar.gz": (
63- "https://zenodo.org/records/17916322/files/openfe_analysis_simulation_output.tar.gz",
63+ "https://zenodo.org/api/ records/17916322/files/openfe_analysis_simulation_output.tar.gz/content ",
6464 "09752f2c4e5b7744d8afdee66dbd1414"
6565 ),
6666 "openfe_analysis_skipped.tar.gz": (
67- "https://zenodo.org/records/17916322/files/openfe_analysis_skipped.tar.gz",
67+ "https://zenodo.org/api/ records/17916322/files/openfe_analysis_skipped.tar.gz/content ",
6868 "3840d044299caacc4ccd50e6b22c0880"
6969 ),
7070 }
71+
7172 # Download and untar each file
7273 for fname, (url, md5) in files.items() :
7374 pooch.retrieve(
You can’t perform that action at this time.
0 commit comments