Skip to content

Commit

Permalink
Bump dependency versions (PyMef for ARM64 compatibility; Python 3.9 a…
Browse files Browse the repository at this point in the history
…nd Numpy 2)
  • Loading branch information
MaxvandenBoom committed Jan 8, 2025
1 parent 7d92cb1 commit 9bcd5f4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions ieegprep/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# ensure minimum version of python
#
import sys
if sys.version_info < (3, 8, 0):
sys.exit("Python 3.8 or later is required.")
if sys.version_info < (3, 9, 0):
sys.exit("Python 3.9 or later is required.")


#
Expand Down
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ name = "ieegprep"
description = "A package to read and pre-process Intracranial Electroencephalography (iEEG) data that is structured according to the Brain Imaging Data Structure (BIDS)"
readme = "README.md"
license = { text="GPLv3" }
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.22.3",
"scipy >= 1.8.0",
"pymef >= 1.4.2",
"psutil >= 5.9.4",
"numpy >= 2.2.1",
"scipy >= 1.15.0",
"pymef >= 1.4.5",
"psutil >= 6.1.1",
]
keywords = ["intracranial", "electroencephalography", "ieeg", "BIDS"]
authors = [{ name="Max van den Boom", email="[email protected]" }]
Expand All @@ -25,10 +25,11 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[options]
python_requires = >= 3.8
python_requires = >= 3.9
install_requires =
numpy >= 1.22.3
scipy >= 1.8.0
pymef >= 1.4.2
psutil >= 5.9.4
numpy >= 1.22.1
scipy >= 1.15.0
pymef >= 1.4.5
psutil >= 6.1.1

0 comments on commit 9bcd5f4

Please sign in to comment.