Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/neurosynth/neurosynth
Browse files Browse the repository at this point in the history
  • Loading branch information
adelavega committed Mar 24, 2014
2 parents 6da9bb6 + fffb5ff commit 57a44bf
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
*.pyc
*.DS_Store
*~
build/
build/
dist
dist/*
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Changelog.md
LICENSE
README.md
setup.cfg
setup.py
examples/.DS_Store
examples/classify_regions_using_features.ipynb
Expand Down
Binary file removed dist/neurosynth-0.3.0.dev.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion neurosynth/analysis/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def save_results(self, outroot, image_list=None):
to all file names. Optionally, a restricted list of images to save can be passed; otherwise,
all images currently stored in self.images will be saved. """
logger.debug("Saving results...")
if image_list == None:
if image_list is None:
image_list = self.images.keys()
for suffix, img in self.images.items():
if suffix in image_list:
Expand Down
2 changes: 1 addition & 1 deletion neurosynth/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"""Specifies current version of NeuroSynth to be used by setup.py and __init__.py
"""

__version__ = '0.3.0.dev'
__version__ = '0.3.1'
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md

0 comments on commit 57a44bf

Please sign in to comment.