-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dependency versions (PyMef for ARM64 compatibility; Python 3.9 a…
…nd Numpy 2)
- Loading branch information
1 parent
7d92cb1
commit 9bcd5f4
Showing
3 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]" }] | ||
|
@@ -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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |