Skip to content

Commit 27458e7

Browse files
authoredFeb 10, 2022
Merge pull request #139 from poldracklab/fix/scipy-dependencies
MAINT: scipy-1.8, numpy-1.22 require python 3.8
2 parents 46004d1 + cb1ce3f commit 27458e7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎setup.cfg

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ url = https://github.com/poldracklab/nitransforms
2222
[options]
2323
python_requires = >= 3.7
2424
install_requires =
25-
numpy
26-
scipy
25+
numpy ~= 1.21.0; python_version<'3.8'
26+
numpy ~= 1.21; python_version>'3.7'
27+
scipy ~= 1.6.0; python_version<'3.8'
28+
scipy ~= 1.6; python_version>'3.7'
2729
nibabel >= 3.0
2830
h5py
2931
test_requires =

0 commit comments

Comments
 (0)
Please sign in to comment.