Skip to content

Commit ea2dada

Browse files
committed
Require IeegPrep 1.5.0
1 parent 499db81 commit ea2dada

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN pip3 install --upgrade pip \
1818
&& pip3 install numpy==1.24.3 \
1919
&& pip3 install scipy==1.10.1 \
2020
&& pip3 install matplotlib==3.7.1 \
21-
&& pip3 install ieegprep==1.4.1 \
21+
&& pip3 install ieegprep==1.5.0 \
2222
&& pip3 install bids_validator==1.11.0 \
2323
&& rm -r /root/.cache
2424

erdetect/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# define directory as package
22

33
#
4-
# ensure minimum version
4+
# ensure minimum version of python
55
#
66
import sys
77
if sys.version_info < (3, 8, 0):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ readme = "README.md"
1212
license = { text="GPLv3" }
1313
requires-python = ">=3.8"
1414
dependencies = [
15-
"ieegprep >= 1.4.1",
15+
"ieegprep >= 1.5.0",
1616
"numpy >= 1.22.3",
1717
"scipy >= 1.8.0",
1818
"matplotlib >= 3.5.1",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[options]
22
python_requires = >= 3.8
33
install_requires =
4-
ieegprep >= 1.4.1
4+
ieegprep >= 1.5.0
55
numpy >= 1.22.3
66
scipy >= 1.8.0
77
matplotlib >= 3.5.1

0 commit comments

Comments
 (0)