Skip to content

Commit

Permalink
[MAINT] Fix various errors due to major version changes in dependenci…
Browse files Browse the repository at this point in the history
…es (#757)

* bump matplotlib version to handle new nilearn release

* restrict numpy versions due to numba issue

* make nibabel less than version 5.0
  • Loading branch information
jdkent authored Jan 12, 2023
1 parent be4df90 commit 97ab7fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ install_requires =
fuzzywuzzy # nimare.annotate
indexed_gzip>=1.4.0 # working with gzipped niftis
joblib # parallelization
matplotlib>=3.0 # this is for nilearn, which doesn't include it in its reqs
nibabel>=3.0.0 # I/O of niftis
matplotlib>=3.3 # this is for nilearn, which doesn't include it in its reqs
nibabel<5.0.0,>=3.0.0 # I/O of niftis (less than version 5 until datatype fix: https://github.com/nipy/nibabel/releases/tag/5.0.0)
nilearn>=0.7.1
numba # used by sparse
numpy
numpy<1.24,>=1.18 # for compatibility with numba https://github.com/numba/numba/issues/8615
pandas>=1.1.0
pymare~=0.0.4rc2 # nimare.meta.ibma and stats
requests # nimare.extract
Expand Down

0 comments on commit 97ab7fa

Please sign in to comment.