Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove upper bound for matplotlib version #751

Merged
merged 1 commit into from
Nov 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ install_requires =
fuzzywuzzy # nimare.annotate
indexed_gzip>=1.4.0 # working with gzipped niftis
joblib # parallelization
matplotlib<3.5 # this is for nilearn, which doesn't include it in its reqs
matplotlib>=3.0 # this is for nilearn, which doesn't include it in its reqs
nibabel>=3.0.0 # I/O of niftis
nilearn>=0.7.1
numba # used by sparse
Expand Down Expand Up @@ -84,6 +84,7 @@ tests =
pytest-cov
minimum =
indexed_gzip==1.4
matplotlib==3.3.4
nibabel==3.0
nilearn==0.7.1
numpy==1.18
Expand Down