-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
I've been experimenting a bit with GitHub actions on a different repository, and I am using the sample dataset from MNE inside the test. The action is failing because tqdm was not installed and is required by pooch even if verbose is set to None / False.
@verbose
def data_path(path=None, force_update=False, update_path=True, download=True,
verbose=None): # noqa: D103
return _download_mne_dataset(
name='sample', processor='untar', path=path,
force_update=force_update, update_path=update_path,
download=download)
Shouldn't there be a mode in which we can download without any verbosity?
Reactions are currently unavailable