From 3aa7e803ae091417cd5298e90ea09f94a4a4cde9 Mon Sep 17 00:00:00 2001 From: Jeff Stout Date: Wed, 5 Jun 2024 11:51:45 -0400 Subject: [PATCH] Made restriction on MNE for mne.io.meas_info requirement --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ccd9d50..a344c44 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers=[ "Operating System :: Linux/Unix", ] dependencies = [ -'mne<1.7', 'numpy', 'pytest', 'joblib', 'nibabel','mne_bids','pandas', 'wget', +'mne<1.6', 'numpy', 'pytest', 'joblib', 'nibabel','mne_bids','pandas', 'wget', 'pyctf-lite @ git+https://github.com/nih-megcore/pyctf-lite@v1.0#egg=pyctf-lite' ] dynamic = ["version"] diff --git a/setup.py b/setup.py index 8f4cd95..a54dea6 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ "Operating System :: Linux/Unix", ], python_requires='>=3.6', - install_requires=['mne', 'numpy', 'pytest', 'joblib', 'nibabel','mne_bids','pandas', 'pyctf-lite @ git+https://github.com/nih-megcore/pyctf-lite@v1.0#egg=pyctf-lite', 'wget'], + install_requires=['mne<1.6', 'numpy', 'pytest', 'joblib', 'nibabel','mne_bids','pandas', 'pyctf-lite @ git+https://github.com/nih-megcore/pyctf-lite@v1.0#egg=pyctf-lite', 'wget'], scripts=['cmdline/make_bids_fs_swarm.sh', 'nih2mne/bstags.py', 'nih2mne/calc_mnetrans.py',