Skip to content

Commit 72e1c51

Browse files
committed
Merge branch 'master' into bug/fnirtfileutils
2 parents fa11ffd + b64b44e commit 72e1c51

30 files changed

+1533
-141
lines changed

CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Next Release
22
============
33

4+
* ENH: New FSL interfaces: WarpPoints, WarpPointsToStd.
5+
* ENH: New Freesurfer interface: MRIPretess
46
* ENH: New miscelaneous interface: AddCSVRow
57
* ENH: FUGUE interface has been refactored to use the name_template system, 3 examples
68
added to doctests, some bugs solved.
@@ -24,6 +26,9 @@ Next Release
2426
* FIX: MRTrix tracking algorithms were ignoring mask parameters.
2527
* FIX: FNIRT registration pathway and associated OpenFMRI example script
2628
* FIX: spm12b compatibility for Model estimate
29+
* FIX: Batch scheduler controls the number of maximum jobs properly
30+
* FIX: Update for FSL 5.0.7 which deprecated Contrast Manager
31+
* ENH: Added ANTS based openfmri workflow
2732

2833
Release 0.9.2 (January 31, 2014)
2934
============

README.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,25 @@ NIPYPE: Neuroimaging in Python: Pipelines and Interfaces
88
.. image:: https://coveralls.io/repos/nipy/nipype/badge.png
99
:target: https://coveralls.io/r/nipy/nipype
1010

11+
.. image:: https://pypip.in/version/nipype/badge.png
12+
:target: https://pypi.python.org/pypi/nipype/
13+
:alt: Latest Version
14+
15+
.. image:: https://pypip.in/download/nipype/badge.png
16+
:target: https://pypi.python.org/pypi/nipype/
17+
:alt: Downloads
18+
19+
.. image:: https://pypip.in/py_versions/nipype/badge.png
20+
:target: https://pypi.python.org/pypi/nipype/
21+
:alt: Supported Python versions
22+
23+
.. image:: https://pypip.in/status/nipype/badge.png
24+
:target: https://pypi.python.org/pypi/nipype/
25+
:alt: Development Status
26+
27+
.. image:: https://pypip.in/license/nipype/badge.png
28+
:target: https://pypi.python.org/pypi/nipype/
29+
:alt: License
1130

1231
Current neuroimaging software offer users an incredible opportunity to
1332
analyze data using a variety of different algorithms. However, this has

doc/_templates/indexsidebar.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ <h3>{{ _('Links') }}</h3>
55
<li>Docs: <a href="http://nipy.org/nipype">Stable</a> · <a href="http://www.mit.edu/~satra/nipype-nightly/">Nightly</a></li>
66
<li>Code: <a href="http://github.com/nipy/nipype">Github</a> · <a href="http://github.com/nipy/nipype/issues">Bugs-Requests</a></li>
77
<li>Forum: <a href="http://groups.google.com/group/nipy-user">User</a> · <a href="http://projects.scipy.org/mailman/listinfo/nipy-devel">Developer</a></li>
8-
<li>Info: <a href="http://nipy.org/software/license/index.html">License</a> · <a href="http://nipy.org/about/funding.html">Funding</a></li>
8+
<li><a href="http://nipy.org/software/license/index.html"><img src="https://pypip.in/license/nipype/badge.png" alt="License"></a> · <a href="http://nipy.org/about/funding.html">Funding</a></li>
99
<li><a href="https://travis-ci.org/nipy/nipype"><img src="https://travis-ci.org/nipy/nipype.png?branch=master" alt="travis"></a> · <a href='https://coveralls.io/r/nipy/nipype'><img src='https://coveralls.io/repos/nipy/nipype/badge.png' alt='Coverage Status' /></a></li>
10+
<li><a href="https://pypi.python.org/pypi/nipype/"><img src="https://pypip.in/download/nipype/badge.png" alt="Downloads"></a> · <a href='https://pypi.python.org/pypi/nipype/'><img src='https://pypip.in/py_versions/nipype/badge.png' alt='Python Versions' /></a></li>
1011
</ul>
1112

1213
{% endblock %}

doc/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@
3838
'sphinx.ext.autosummary',
3939
'numpy_ext.numpydoc',
4040
'matplotlib.sphinxext.plot_directive',
41-
'matplotlib.sphinxext.only_directives'
41+
'matplotlib.sphinxext.only_directives',
42+
'matplotlib.sphinxext.ipython_directive',
43+
'ipython_console_highlighting'
4244
]
4345

4446
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)