From 26d8b77fe4b352de01eb41311a2813fafd518cb3 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Fri, 8 Nov 2024 09:19:16 -0500 Subject: [PATCH] BUG: download test data from GitHub Releases IPFS is not providing the same sha / content? --- test/_data.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/_data.py b/test/_data.py index 8859203..ff69a81 100644 --- a/test/_data.py +++ b/test/_data.py @@ -14,7 +14,8 @@ test_data_dir = test_dir / extract_dir test_data = pooch.create( path=test_dir, - base_url=f"https://{test_data_ipfs_cid}.ipfs.w3s.link/ipfs/{test_data_ipfs_cid}/", + # base_url=f"https://{test_data_ipfs_cid}.ipfs.w3s.link/ipfs/{test_data_ipfs_cid}/", + base_url="https://github.com/spatial-image/multiscale-spatial-image/releases/download/v2.0.0/", registry={ "data.tar.gz": f"sha256:{test_data_sha256}", },