Skip to content

Commit 6a04c4c

Browse files
authored
fix: Cap pooch dependency version (#1241)
Currently, both the script and notebook versions of our example file `examples/workflows/plot_simulate_somato.py` fail because of an upstream breakage in how the MNE sample data is downloaded and unpacked (see here fatiando/pooch#518 This change fixes the issue by "capping" the Pooch version to a prior version which does not contain the bug.
1 parent 2f23f75 commit 6a04c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def run(self):
8080
'parallel': ['joblib', 'psutil'],
8181
'test': ['codespell', 'pytest', 'pytest-cov', 'pytest-xdist', 'ruff'],
8282
'docs': ['mne', 'myst-parser', 'nibabel', 'numpydoc', 'pillow',
83-
'pooch', 'pydata-sphinx-theme', 'sphinx', 'sphinx-gallery',
83+
'pooch<1.9.0', 'pydata-sphinx-theme', 'sphinx', 'sphinx-gallery',
8484
'sphinx-copybutton', 'tdqm'],
8585
'gui': ['ipywidgets>=8.0.0', 'ipykernel', 'ipympl', 'voila'],
8686
}

0 commit comments

Comments
 (0)