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

[MAINT] make indexed_gzip install optional #791

Merged
merged 1 commit into from
Apr 24, 2023
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
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ python_requires = >= 3.6
install_requires =
cognitiveatlas # nimare.annotate.cogat
fuzzywuzzy # nimare.annotate
indexed_gzip>=1.4.0 # working with gzipped niftis
joblib # parallelization
matplotlib>=3.3 # this is for nilearn, which doesn't include it in its reqs
nibabel>=3.0.0 # I/O of niftis
Expand All @@ -60,6 +59,8 @@ packages = find:
include_package_data = False

[options.extras_require]
gzip =
indexed_gzip>=1.4.0 # working with gzipped niftis
doc =
m2r
matplotlib
Expand All @@ -82,7 +83,6 @@ tests =
pytest
pytest-cov
minimum =
indexed_gzip==1.4
matplotlib==3.3.4
nibabel==3.0
nilearn==0.9.2
Expand Down