From 1342aea9cdc608b910e837fba34a55fad3ab0910 Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: Aug 30 2021 16:53:50 +0000 Subject: Remove unused dependency on funcsigs --- diff --git a/python-mne.spec b/python-mne.spec index 3a9f914..2898d66 100644 --- a/python-mne.spec +++ b/python-mne.spec @@ -69,7 +69,6 @@ Requires: python3-decorator Requires: python3-h5io Requires: python3-six Requires: python3-tempita -Requires: python3-funcsigs Requires: python3-pymatreader Recommends: python3-scikit-learn Recommends: python3-pandas @@ -100,7 +99,7 @@ pushd %{modname}/externals/ # Check that only {FieldTrip,__init__}.py remain [ $(find -maxdepth 1 -mindepth 1 | grep -v FieldTrip.py | grep -v __init__.py | wc -l) -eq 0 ] || exit 1 popd -# use all six/tqdm/decorator/h5io/funcsigs/pymatreader from system +# use all six/tqdm/decorator/h5io/pymatreader from system # fix API change for jdjcal/jcal2jd find -type f -name '*.py' -exec sed -i \ -e "s/from mne.externals.six/from six/" \ @@ -111,7 +110,6 @@ find -type f -name '*.py' -exec sed -i \ -e "s/from mne.externals.h5io/from h5io/" \ -e "s/from \.*externals.h5io/from h5io/" \ -e "s/from \.*externals.tempita/from tempita/" \ - -e "s/from \.*externals.funcsigs/from funcsigs/" \ -e "s/from \.*externals.pymatreader/from pymatreader/" \ -e "s/from mne.externals.pymatreader/from pymatreader/" \ -e "s/from \.*.externals.tqdm/from tqdm/" \ @@ -170,6 +168,7 @@ pytest-%{python3_version}\ %changelog * Mon Aug 30 2021 Miro Hrončok - 0.23.3-1 - Update to 0.23.3 +- Remove unused dependency on funcsigs - Fixes: rhbz#1945960 - Fixes: rhbz#1914283