From e1ecbe7f1564fc1db49fcbace11e0b10507581ac Mon Sep 17 00:00:00 2001 From: Brian McFee Date: Sat, 6 Jun 2020 15:52:12 -0400 Subject: [PATCH] updated data path --- librosa/util/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librosa/util/files.py b/librosa/util/files.py index 83d0182385..922041a77b 100644 --- a/librosa/util/files.py +++ b/librosa/util/files.py @@ -20,7 +20,7 @@ # Instantiate the pooch __data_path = os.environ.get('LIBROSA_DATA_DIR', pooch.os_cache('librosa')) __GOODBOY = pooch.create(__data_path, - base_url="https://github.com/librosa/librosa-data/raw/master/audio/", # TODO: fix this + base_url="https://github.com/librosa/librosa-data/raw/main/audio/", # TODO: fix this registry=None) __GOODBOY.load_registry(resource_filename(__name__, str(Path('example_data') / 'registry.txt')))