From 1813cece932db5dbd25fd40f988b034ef4769cfd Mon Sep 17 00:00:00 2001 From: zssherman Date: Mon, 20 Nov 2023 10:48:34 -0600 Subject: [PATCH 1/2] FIX: Fix for files not found error when fetching. --- arm_test_data/dataset.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arm_test_data/dataset.py b/arm_test_data/dataset.py index 73c3bec..bf9e819 100644 --- a/arm_test_data/dataset.py +++ b/arm_test_data/dataset.py @@ -3,7 +3,7 @@ DATASETS = pooch.create( path=pooch.os_cache('arm-test-data'), - base_url='https://github.com/openradar/arm-test-data/raw/main/data/', + base_url='https://github.com/ARM-DOE/arm-test-data/tree/main/data', env='ACT_TEST_DATA_DIR', ) diff --git a/pyproject.toml b/pyproject.toml index 42b749e..540061c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "arm-test-data" -description = """Provides utility functions for accessing data repository for openradar examples/notebooks""" +description = """Provides utility functions for accessing data repository for ARM data examples/notebooks""" requires-python = ">=3.8" license = {file = "LICENSE"} keywords = ["arm-test-data", "atmosphere", "meteorology"] From b2c0dde3c2ce9fa0dbf9136d89249d8559de3397 Mon Sep 17 00:00:00 2001 From: zssherman Date: Mon, 20 Nov 2023 10:49:29 -0600 Subject: [PATCH 2/2] FIX: Missing slash. --- arm_test_data/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm_test_data/dataset.py b/arm_test_data/dataset.py index bf9e819..30353fe 100644 --- a/arm_test_data/dataset.py +++ b/arm_test_data/dataset.py @@ -3,7 +3,7 @@ DATASETS = pooch.create( path=pooch.os_cache('arm-test-data'), - base_url='https://github.com/ARM-DOE/arm-test-data/tree/main/data', + base_url='https://github.com/ARM-DOE/arm-test-data/tree/main/data/', env='ACT_TEST_DATA_DIR', )